mirror of
https://github.com/SWG-Source/src.git
synced 2026-07-28 22:15:49 -04:00
more clang namespace fixes
This commit is contained in:
@@ -34,8 +34,8 @@ namespace Archive
|
||||
|
||||
class CityInfo
|
||||
{
|
||||
friend void Archive::get(ReadIterator & source, CityInfo & target);
|
||||
friend void Archive::put(ByteStream & target, const CityInfo & source);
|
||||
friend void Archive::get(Archive::ReadIterator & source, CityInfo & target);
|
||||
friend void Archive::put(Archive::ByteStream & target, const CityInfo & source);
|
||||
|
||||
public:
|
||||
CityInfo();
|
||||
|
||||
+1
-1
@@ -30,7 +30,7 @@ class AiCreatureStateMessage : public MessageQueue::Data
|
||||
{
|
||||
CONTROLLER_MESSAGE_INTERFACE;
|
||||
|
||||
friend void Archive::get(ReadIterator & source, AiCreatureStateMessage & target);
|
||||
friend void Archive::get(Archive::ReadIterator & source, AiCreatureStateMessage & target);
|
||||
|
||||
public:
|
||||
|
||||
|
||||
+1
-1
@@ -35,7 +35,7 @@ class AiMovementMessage : public MessageQueue::Data
|
||||
{
|
||||
CONTROLLER_MESSAGE_INTERFACE;
|
||||
|
||||
friend void Archive::get(ReadIterator & source, AiMovementMessage & target);
|
||||
friend void Archive::get(Archive::ReadIterator & source, AiMovementMessage & target);
|
||||
|
||||
public:
|
||||
AiMovementMessage();
|
||||
|
||||
@@ -70,8 +70,8 @@ class PopulationList
|
||||
PopulationMapType m_populationMap;
|
||||
mutable PopulationMapType m_populationCache;
|
||||
|
||||
friend void Archive::get(ReadIterator & source, PopulationList & target);
|
||||
friend void Archive::put(ByteStream & target, const PopulationList & source);
|
||||
friend void Archive::get(Archive::ReadIterator & source, PopulationList & target);
|
||||
friend void Archive::put(Archive::ByteStream & target, const PopulationList & source);
|
||||
};
|
||||
|
||||
// ======================================================================
|
||||
|
||||
Reference in New Issue
Block a user