]> git.lyx.org Git - features.git/commitdiff
cmake merge: declare before instantiate
authorPeter Kümmel <syntheticpp@gmx.net>
Sat, 1 Dec 2007 10:24:48 +0000 (10:24 +0000)
committerPeter Kümmel <syntheticpp@gmx.net>
Sat, 1 Dec 2007 10:24:48 +0000 (10:24 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21897 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/lstrings.h

index 2ebd774ff96157935f56e9d7744e6740737e271a..bcf4b5aaca6990d2941cc438edce88192c83c2b0 100644 (file)
@@ -269,6 +269,18 @@ template <class Arg1, class Arg2, class Arg3, class Arg4>
 docstring bformat(docstring const & fmt, Arg1, Arg2, Arg3, Arg4);
 
 
+template<> docstring bformat(docstring const & fmt, int arg1);
+template<> docstring bformat(docstring const & fmt, long arg1);
+template<> docstring bformat(docstring const & fmt, unsigned int arg1);
+template<> docstring bformat(docstring const & fmt, docstring arg1);
+template<> docstring bformat(docstring const & fmt, char * arg1);
+template<> docstring bformat(docstring const & fmt, docstring arg1, docstring arg2);
+template<> docstring bformat(docstring const & fmt, char const * arg1, docstring arg2);
+template<> docstring bformat(docstring const & fmt, int arg1, int arg2);
+template<> docstring bformat(docstring const & fmt, docstring arg1, docstring arg2, docstring arg3);
+template<> docstring bformat(docstring const & fmt, docstring arg1, docstring arg2, docstring arg3, docstring arg4);
+
+
 } // namespace support
 } // namespace lyx