
https://svn.lrde.epita.fr/svn/ranch/trunk Index: ChangeLog from Nicolas Desprès <nicolas.despres@lrde.epita.fr> Fix problem with semi-column. * lib/cxx/test/unit.mk: Remove -pedantic since cxxtest do not support it because of its namespace ended by a semi-column. * lib/cxx/src/bencher.cc: Remove the semi-column at the end of the Ranch namespace to support -pedantic with g++-3.4. src/bencher.cc | 2 +- test/unit.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Index: lib/cxx/test/unit.mk --- lib/cxx/test/unit.mk (revision 5) +++ lib/cxx/test/unit.mk (working copy) @@ -3,7 +3,7 @@ CXXTESTGEN = $(top_srcdir)/test/tools/cxxtest/cxxtestgen.pl CXXTESTGENFLAGS = --error-printer -AM_CXXFLAGS = -W -Wall -pedantic +AM_CXXFLAGS = -W -Wall AM_CPPFLAGS += -I$(top_srcdir)/test/tools/cxxtest TESTS = Index: lib/cxx/src/bencher.cc --- lib/cxx/src/bencher.cc (revision 5) +++ lib/cxx/src/bencher.cc (working copy) @@ -100,4 +100,4 @@ } } -}; // namespace Ranch +} // namespace Ranch