From be9fdbcad4dfb7fd3a232900ac6fef67a6954076 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Peter=20K=C3=BCmmel?= Date: Fri, 23 Apr 2010 12:52:39 +0000 Subject: [PATCH] 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 --- src/frontends/qt4/GuiHyperlink.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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 -- 2.39.5