replace tabs with 4 spaces

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@680 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2006-06-19 12:39:09 +00:00
parent 963152efd4
commit 30f4e933c1
14 changed files with 298 additions and 283 deletions

View file

@ -50,11 +50,11 @@ namespace Loki
// Crude writing method: writes straight to the file, unbuffered
// Must be combined with a buffer to work properly (and efficiently)
LOKI_EXPORT
void write(std::FILE* f, const char* from, const char* to);
void write(std::FILE* f, const char* from, const char* to);
// Write to a string
LOKI_EXPORT
LOKI_EXPORT
void write(std::string& s, const char* from, const char* to);
// Write to a fixed-size buffer
@ -532,22 +532,22 @@ namespace Loki
LOKI_SAFEFORMAT_SIGNED_LONG result_;
};
LOKI_EXPORT
LOKI_EXPORT
PrintfState<std::FILE*, char> Printf(const char* format);
LOKI_EXPORT
LOKI_EXPORT
PrintfState<std::FILE*, char> Printf(const std::string format);
LOKI_EXPORT
LOKI_EXPORT
PrintfState<std::FILE*, char> FPrintf(FILE* f, const char* format);
LOKI_EXPORT
LOKI_EXPORT
PrintfState<std::FILE*, char> FPrintf(FILE* f, const std::string& format);
LOKI_EXPORT
LOKI_EXPORT
PrintfState<std::string&, char> SPrintf(std::string& s, const char* format);
LOKI_EXPORT
LOKI_EXPORT
PrintfState<std::string&, char> SPrintf(std::string& s, const std::string& format);
template <class T, class Char>
@ -573,6 +573,9 @@ namespace Loki
#endif //SAFEFORMAT_H_
// $Log$
// Revision 1.25 2006/06/19 12:39:08 syntheticpp
// replace tabs with 4 spaces
//
// Revision 1.24 2006/02/28 11:13:20 syntheticpp
// add export specifier
//