Skip to content

Commit

Permalink
Version up
Browse files Browse the repository at this point in the history
  • Loading branch information
satoken committed Feb 12, 2016
1 parent a117eb0 commit ab94dce
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for centroid_fold 0.0.14.
# Generated by GNU Autoconf 2.69 for centroid_fold 0.0.15.
#
# Report bugs to <no-define>.
#
Expand Down Expand Up @@ -579,8 +579,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='centroid_fold'
PACKAGE_TARNAME='centroid_fold'
PACKAGE_VERSION='0.0.14'
PACKAGE_STRING='centroid_fold 0.0.14'
PACKAGE_VERSION='0.0.15'
PACKAGE_STRING='centroid_fold 0.0.15'
PACKAGE_BUGREPORT='no-define'
PACKAGE_URL=''

Expand Down Expand Up @@ -1298,7 +1298,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures centroid_fold 0.0.14 to adapt to many kinds of systems.
\`configure' configures centroid_fold 0.0.15 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1368,7 +1368,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of centroid_fold 0.0.14:";;
short | recursive ) echo "Configuration of centroid_fold 0.0.15:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1488,7 +1488,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
centroid_fold configure 0.0.14
centroid_fold configure 0.0.15
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1949,7 +1949,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by centroid_fold $as_me 0.0.14, which was
It was created by centroid_fold $as_me 0.0.15, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
Expand Down Expand Up @@ -2812,7 +2812,7 @@ fi
# Define the identity of the package.
PACKAGE='centroid_fold'
VERSION='0.0.14'
VERSION='0.0.15'
cat >>confdefs.h <<_ACEOF
Expand Down Expand Up @@ -7103,7 +7103,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by centroid_fold $as_me 0.0.14, which was
This file was extended by centroid_fold $as_me 0.0.15, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -7169,7 +7169,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
centroid_fold config.status 0.0.14
centroid_fold config.status 0.0.15
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.61)
AC_INIT(centroid_fold, 0.0.14, no-define)
AC_INIT(centroid_fold, 0.0.15, no-define)
AM_INIT_AUTOMAKE([-Wall foreign])
AM_CONFIG_HEADER(config.h)
AC_CONFIG_SRCDIR([src/centroid_fold.cpp])
Expand Down
2 changes: 1 addition & 1 deletion src/folding_engine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ compute_expected_accuracy(const std::string& paren,
else if (c == ')') {
int left = st.back();
st.pop_back();
BP.push_back ( std::make_pair<int, int>(left, n) );
BP.push_back ( std::make_pair<int, int>((int)left, (int)n) );
}
}
assert (st.size()==0);
Expand Down

0 comments on commit ab94dce

Please sign in to comment.