]> git.lyx.org Git - features.git/commitdiff
cmake: remove recursive call, even if it breaks merged builds with GCC
authorPeter Kümmel <syntheticpp@gmx.net>
Fri, 23 Apr 2010 12:52:39 +0000 (12:52 +0000)
committerPeter Kümmel <syntheticpp@gmx.net>
Fri, 23 Apr 2010 12:52:39 +0000 (12:52 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34279 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiHyperlink.cpp

index 60b0fe430ed804e18a080c49bd5d7ca45c90f1aa..13d9ede9a86a5222fe3cc6fa12533a272ab2b5f0 100644 (file)
 #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