mirror of
https://github.com/SWG-Source/src.git
synced 2026-08-04 04:16:02 -04:00
more clang sanctioned namespace fixups
This commit is contained in:
@@ -30,8 +30,8 @@ namespace Archive
|
||||
|
||||
class CityStructureInfo
|
||||
{
|
||||
friend void Archive::get(ReadIterator & source, CityStructureInfo & target);
|
||||
friend void Archive::put(ByteStream & target, const CityStructureInfo & source);
|
||||
friend void Archive::get(Archive::ReadIterator & source, CityStructureInfo & target);
|
||||
friend void Archive::put(Archive::ByteStream & target, const CityStructureInfo & source);
|
||||
|
||||
public:
|
||||
bool operator== (const CityStructureInfo& rhs) const;
|
||||
|
||||
@@ -48,8 +48,8 @@ namespace CellPermissions
|
||||
|
||||
class PermissionObject
|
||||
{
|
||||
friend void Archive::get( ReadIterator & source, CellPermissions::PermissionObject & target );
|
||||
friend void Archive::put( ByteStream & target, const CellPermissions::PermissionObject & source );
|
||||
friend void Archive::get( Archive::ReadIterator & source, CellPermissions::PermissionObject & target );
|
||||
friend void Archive::put( Archive::ByteStream & target, const CellPermissions::PermissionObject & source );
|
||||
|
||||
friend class ::BuildingObject;
|
||||
friend class ::CellObject;
|
||||
|
||||
@@ -210,7 +210,7 @@ public:
|
||||
const stdvector<ValueDictionary>::fwd & getValueDictionaryArrayParam(int index) const;
|
||||
|
||||
protected:
|
||||
friend void Archive::get(ReadIterator & source, ScriptParams & target);
|
||||
friend void Archive::get(Archive::ReadIterator & source, ScriptParams & target);
|
||||
|
||||
private:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user