Remove spurious semi-colon.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4943 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-08-12 15:17:48 +00:00
parent 1e3d2fce7f
commit 39df8f328c
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-08-11 Angus Leeming <leeming@lyx.org>
* lyxinclude.m4 (LYX_CXX_EXPLICIT): remove trailing semi-colon after
definition of c-tor.
2002-08-11 Lars Gullik Bjønnes <larsbj@gullik.net>
* Makefile.am (EXTRA_DIST): remove sigc++.m4

View File

@ -284,7 +284,7 @@ AC_CACHE_CHECK(whether the C++ compiler understands explicit,lyx_cv_explicit,
[AC_TRY_COMPILE([
class Expl {
public:
explicit Expl() {};
explicit Expl() {}
};],,lyx_cv_explicit=yes,lyx_cv_explicit=no)
])
if test $lyx_cv_explicit = no ; then