aboutsummaryrefslogtreecommitdiff
path: root/libbutl/timestamp.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-06-23 14:31:26 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-06-23 14:31:26 +0200
commite652a49cbac1098dd97695309336545ef4e9ae89 (patch)
tree1af0a5270d06e05e788c1342e1cc35723106b7ec /libbutl/timestamp.hxx
parentc36042925c8d52e3899ea310018cb7243d191306 (diff)
Rename LIBBUTL_EXPORT to LIBBUTL_SYMEXPORT in preparation for modularization
Diffstat (limited to 'libbutl/timestamp.hxx')
-rw-r--r--libbutl/timestamp.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/libbutl/timestamp.hxx b/libbutl/timestamp.hxx
index 8a5c71a..c1621a7 100644
--- a/libbutl/timestamp.hxx
+++ b/libbutl/timestamp.hxx
@@ -81,7 +81,7 @@ namespace butl
// - support %(N) version for non-optional printing
// - support for suffix %[<d>N<s>], for example %[N nsec]
//
- LIBBUTL_EXPORT std::ostream&
+ LIBBUTL_SYMEXPORT std::ostream&
to_stream (std::ostream&,
const timestamp&,
const char* format,
@@ -91,7 +91,7 @@ namespace butl
// Same as above, but provide the result as a string. Note that it is
// implemented via to_stream() and std::ostringstream.
//
- LIBBUTL_EXPORT std::string
+ LIBBUTL_SYMEXPORT std::string
to_string (const timestamp&,
const char* format,
bool special,
@@ -105,13 +105,13 @@ namespace butl
// Print human-readable representation of the duration.
//
- LIBBUTL_EXPORT std::ostream&
+ LIBBUTL_SYMEXPORT std::ostream&
to_stream (std::ostream&, const duration&, bool nanoseconds);
// Same as above, but provide the result as a string. Note that it is
// implemented via to_stream() and std::ostringstream.
//
- LIBBUTL_EXPORT std::string
+ LIBBUTL_SYMEXPORT std::string
to_string (const duration&, bool nanoseconds);
inline std::ostream&
@@ -159,7 +159,7 @@ namespace butl
// - ability to parse local, return UTC and vice-versa
// - handle timezone parsing
//
- LIBBUTL_EXPORT timestamp
+ LIBBUTL_SYMEXPORT timestamp
from_string (const char* input,
const char* format,
bool local,