mirror of
https://github.com/SWG-Source/src.git
synced 2026-08-03 03:16:01 -04:00
more clang sanctioned namespace fixups
This commit is contained in:
@@ -28,8 +28,8 @@ namespace Archive
|
||||
|
||||
class WearableEntry
|
||||
{
|
||||
friend void Archive::get(ReadIterator & source, WearableEntry & target);
|
||||
friend void Archive::put(ByteStream & target, const WearableEntry & source);
|
||||
friend void Archive::get(Archive::ReadIterator & source, WearableEntry & target);
|
||||
friend void Archive::put(Archive::ByteStream & target, const WearableEntry & source);
|
||||
|
||||
public:
|
||||
WearableEntry(const std::string&, int, const NetworkId&, int);
|
||||
|
||||
@@ -74,8 +74,8 @@ class PlayerQuestData
|
||||
uint32 m_relativeAgeIndex; // This is not meant to be persisted
|
||||
bool m_hasReceivedReward;
|
||||
|
||||
friend void Archive::get(ReadIterator & source, PlayerQuestData & target);
|
||||
friend void Archive::put(ByteStream & target, const PlayerQuestData & source);
|
||||
friend void Archive::get(Archive::ReadIterator & source, PlayerQuestData & target);
|
||||
friend void Archive::put(Archive::ByteStream & target, const PlayerQuestData & source);
|
||||
};
|
||||
|
||||
// ======================================================================
|
||||
|
||||
@@ -31,8 +31,8 @@ namespace Archive
|
||||
|
||||
class TravelPoint
|
||||
{
|
||||
friend void Archive::get(ReadIterator& source, TravelPoint& target);
|
||||
friend void Archive::put(ByteStream& target, const TravelPoint& source);
|
||||
friend void Archive::get(Archive::ReadIterator& source, TravelPoint& target);
|
||||
friend void Archive::put(Archive::ByteStream& target, const TravelPoint& source);
|
||||
|
||||
public:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user