summaryrefslogtreecommitdiffstats
path: root/depends/libnbtplusplus/include/endian_str.h
diff options
context:
space:
mode:
Diffstat (limited to 'depends/libnbtplusplus/include/endian_str.h')
-rw-r--r--depends/libnbtplusplus/include/endian_str.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/depends/libnbtplusplus/include/endian_str.h b/depends/libnbtplusplus/include/endian_str.h
index ac8e8986..4a3151c3 100644
--- a/depends/libnbtplusplus/include/endian_str.h
+++ b/depends/libnbtplusplus/include/endian_str.h
@@ -91,7 +91,7 @@ NBT___EXPORT void write_big(std::ostream& os, float x);
NBT___EXPORT void write_big(std::ostream& os, double x);
template<class T>
-NBT___EXPORT void read(std::istream& is, T& x, endian e)
+void read(std::istream& is, T& x, endian e)
{
if(e == little)
read_little(is, x);
@@ -100,7 +100,7 @@ NBT___EXPORT void read(std::istream& is, T& x, endian e)
}
template<class T>
-NBT___EXPORT void write(std::ostream& os, T x, endian e)
+void write(std::ostream& os, T x, endian e)
{
if(e == little)
write_little(os, x);