From: Peter Kümmel Date: Fri, 23 Apr 2010 12:52:39 +0000 (+0000) Subject: cmake: remove recursive call, even if it breaks merged builds with GCC X-Git-Tag: 2.0.0~3355 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=be9fdbcad4dfb7fd3a232900ac6fef67a6954076;p=lyx.git cmake: remove recursive call, even if it breaks merged builds with GCC git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34279 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt4/GuiHyperlink.cpp b/src/frontends/qt4/GuiHyperlink.cpp index 60b0fe430e..13d9ede9a8 100644 --- a/src/frontends/qt4/GuiHyperlink.cpp +++ b/src/frontends/qt4/GuiHyperlink.cpp @@ -24,11 +24,9 @@ #ifdef LYX_MERGED_BUILD // GCC couldn't find operator== namespace lyx { - bool operator==(lyx::docstring & d, char const * c) - { return lyx::operator ==(d, c); } + bool operator==(lyx::docstring & d, char const * c); namespace frontend { - bool operator==(lyx::docstring & d, char const * c) - { return lyx::operator ==(d, c); } + bool operator==(lyx::docstring & d, char const * c); } } #endif