move Printf/SPrintf into the Loki namespace

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@433 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2006-01-05 20:41:47 +00:00
parent 70fdd98598
commit 90f1278043

View file

@ -25,6 +25,9 @@
#include <cassert>
#include <locale>
namespace Loki
{
// Crude writing method: writes straight to the file, unbuffered
// Must be combined with a buffer to work properly (and efficiently)
@ -511,4 +514,6 @@ BufPrintf(Char (&buf)[N], const Char* format) {
return PrintfState<std::pair<Char*, std::size_t>, Char>(temp, format);
}
}// namespace Loki
#endif //SAFEFORMAT_H_