summaryrefslogtreecommitdiff
path: root/nix/boost/format/macros_default.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'nix/boost/format/macros_default.hpp')
-rw-r--r--nix/boost/format/macros_default.hpp48
1 files changed, 0 insertions, 48 deletions
diff --git a/nix/boost/format/macros_default.hpp b/nix/boost/format/macros_default.hpp
deleted file mode 100644
index 4fd84a163fb..00000000000
--- a/nix/boost/format/macros_default.hpp
+++ /dev/null
@@ -1,48 +0,0 @@
1// -*- C++ -*-
2// Boost general library 'format' ---------------------------
3// See http://www.boost.org for updates, documentation, and revision history.
4
5// (C) Samuel Krempp 2001
6// krempp@crans.ens-cachan.fr
7// Permission to copy, use, modify, sell and
8// distribute this software is granted provided this copyright notice appears
9// in all copies. This software is provided "as is" without express or implied
10// warranty, and with no claim as to its suitability for any purpose.
11
12// ideas taken from Rüdiger Loos's format class
13// and Karl Nelson's ofstream (also took its parsing code as basis for printf parsing)
14
15// ------------------------------------------------------------------------------
16// macros_default.hpp : configuration for the format library
17// provides default values for the stl workaround macros
18// ------------------------------------------------------------------------------
19
20#ifndef BOOST_FORMAT_MACROS_DEFAULT_HPP
21#define BOOST_FORMAT_MACROS_DEFAULT_HPP
22
23// *** This should go to "boost/config/suffix.hpp".
24
25#ifndef BOOST_IO_STD
26# define BOOST_IO_STD std::
27#endif
28
29// **** Workaround for io streams, stlport and msvc.
30#ifdef BOOST_IO_NEEDS_USING_DECLARATION
31namespace boost {
32 using std::char_traits;
33 using std::basic_ostream;
34 using std::basic_ostringstream;
35 namespace io {
36 using std::basic_ostream;
37 namespace detail {
38 using std::basic_ios;
39 using std::basic_ostream;
40 using std::basic_ostringstream;
41 }
42 }
43}
44#endif
45
46// ------------------------------------------------------------------------------
47
48#endif // BOOST_FORMAT_MACROS_DEFAULT_HPP