Changeset 178da0


Ignore:
Timestamp:
Feb 21, 2011, 3:46:20 PM (15 years ago)
Author:
Frederik Heber <heber@…>
Children:
4fb16c
Parents:
d1e0c0
git-author:
Frederik Heber <heber@…> (02/21/11 15:45:05)
git-committer:
Frederik Heber <heber@…> (02/21/11 15:46:20)
Message:

BUGFIX: ObserveredIterator<> operator==,!= have not been const member functions.

  • Library version is now 5:1:5, API version is still 1.0.11.
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    rd1e0c0 r178da0  
    33
    44AC_PREREQ([2.65])
    5 AC_INIT([CodePatterns], [1.0.10], [heber@ins.uni-bonn.de], [codepatterns], [http://trac.ins.uni-bonn.de/projects/CodePatterns/])
     5AC_INIT([CodePatterns], [1.0.11], [heber@ins.uni-bonn.de], [codepatterns], [http://trac.ins.uni-bonn.de/projects/CodePatterns/])
    66AC_CONFIG_AUX_DIR(config)
    77AC_CONFIG_SRCDIR([src/Patterns/Singleton_impl.hpp])
     
    2525# refer to the libtool manual, section "Updating library version information":
    2626# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
    27 AC_SUBST([CODEPATTERNS_SO_VERSION], [5:0:5])
    28 AC_SUBST([CODEPATTERNS_API_VERSION], [1.0.10])
     27AC_SUBST([CODEPATTERNS_SO_VERSION], [5:1:5])
     28AC_SUBST([CODEPATTERNS_API_VERSION], [1.0.11])
    2929
    3030# Checks for libraries.
  • src/Patterns/ObservedIterator.hpp

    rd1e0c0 r178da0  
    9999  }
    100100
    101   bool operator==(const ObservedIterator &rhs){
     101  bool operator==(const ObservedIterator &rhs) const
     102  {
    102103    return iter==rhs.iter;
    103104  }
    104105
    105   bool operator!=(const ObservedIterator &rhs){
     106  bool operator!=(const ObservedIterator &rhs) const
     107  {
    106108    return iter!=rhs.iter;
    107109  }
Note: See TracChangeset for help on using the changeset viewer.