summaryrefslogtreecommitdiffstats
path: root/src/libktorrent/torrent/peerid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libktorrent/torrent/peerid.cpp')
-rw-r--r--src/libktorrent/torrent/peerid.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libktorrent/torrent/peerid.cpp b/src/libktorrent/torrent/peerid.cpp
index f15d5f2..66e9533 100644
--- a/src/libktorrent/torrent/peerid.cpp
+++ b/src/libktorrent/torrent/peerid.cpp
@@ -74,7 +74,7 @@ namespace bt
return *this;
}
- bool operator == (const PeerID & a,const PeerID & b)
+ LIBKTORRENT_EXPORT bool operator == (const PeerID & a,const PeerID & b)
{
for (int i = 0;i < 20;i++)
if (a.id[i] != b.id[i])
@@ -83,12 +83,12 @@ namespace bt
return true;
}
- bool operator != (const PeerID & a,const PeerID & b)
+ LIBKTORRENT_EXPORT bool operator != (const PeerID & a,const PeerID & b)
{
return ! operator == (a,b);
}
- bool operator < (const PeerID & a,const PeerID & b)
+ LIBKTORRENT_EXPORT bool operator < (const PeerID & a,const PeerID & b)
{
for (int i = 0;i < 20;i++)
if (a.id[i] < b.id[i])