mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
cmake merge: declare before instantiate
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21897 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4ff95a154d
commit
b5158fbe51
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user