aboutsummaryrefslogtreecommitdiffstats
path: root/src/math
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-02-24 21:59:03 +0000
committerlloyd <[email protected]>2010-02-24 21:59:03 +0000
commit896fb20a4c2eb6ca0c1b6ff0bfd35cadf1a48e18 (patch)
treef89fa356a833d7b22962f38edb55b5c81f31fc9d /src/math
parent9efa59d4322babc444601052aa79f7b3fe304fd6 (diff)
Add BOTAN_DLL exports to some CurveGFp funcs
Diffstat (limited to 'src/math')
-rw-r--r--src/math/gfpmath/curve_gfp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/math/gfpmath/curve_gfp.h b/src/math/gfpmath/curve_gfp.h
index 5be2c9af6..e4ee7c8f5 100644
--- a/src/math/gfpmath/curve_gfp.h
+++ b/src/math/gfpmath/curve_gfp.h
@@ -65,7 +65,7 @@ class BOTAN_DLL CurveGFp
};
// relational operators
-bool operator==(const CurveGFp& lhs, const CurveGFp& rhs);
+BOTAN_DLL bool operator==(const CurveGFp& lhs, const CurveGFp& rhs);
inline bool operator!=(const CurveGFp& lhs, const CurveGFp& rhs)
{
@@ -73,7 +73,7 @@ inline bool operator!=(const CurveGFp& lhs, const CurveGFp& rhs)
}
// io operators
-std::ostream& operator<<(std::ostream& output, const CurveGFp& elem);
+BOTAN_DLL std::ostream& operator<<(std::ostream& output, const CurveGFp& elem);
// swaps the states of curve1 and curve2, does not throw!
// cf. Meyers, Item 25