aboutsummaryrefslogtreecommitdiff
path: root/libbutl/sha256.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/sha256.hxx
parentc36042925c8d52e3899ea310018cb7243d191306 (diff)
Rename LIBBUTL_EXPORT to LIBBUTL_SYMEXPORT in preparation for modularization
Diffstat (limited to 'libbutl/sha256.hxx')
-rw-r--r--libbutl/sha256.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/libbutl/sha256.hxx b/libbutl/sha256.hxx
index eea2b23..e81b87b 100644
--- a/libbutl/sha256.hxx
+++ b/libbutl/sha256.hxx
@@ -21,7 +21,7 @@ namespace butl
//
// cerr << sha256 ("123").string () << endl;
//
- class LIBBUTL_EXPORT sha256
+ class LIBBUTL_SYMEXPORT sha256
{
public:
sha256 ();
@@ -87,14 +87,14 @@ namespace butl
// like 01:AB:CD:...). Throw invalid_argument if the argument is not a valid
// SHA256 string.
//
- LIBBUTL_EXPORT std::string
+ LIBBUTL_SYMEXPORT std::string
sha256_to_fingerprint (const std::string&);
// Convert a fingerprint (32 colon-separated hex digit pairs) to the SHA256
// string representation (64 lower case hex digits). Throw invalid_argument
// if the argument is not a valid fingerprint.
//
- LIBBUTL_EXPORT std::string
+ LIBBUTL_SYMEXPORT std::string
fingerprint_to_sha256 (const std::string&);
}