Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Steam/ugc_id.h')
-rw-r--r--Source/Steam/ugc_id.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/Steam/ugc_id.h b/Source/Steam/ugc_id.h
index ebc0b895..852b0a0f 100644
--- a/Source/Steam/ugc_id.h
+++ b/Source/Steam/ugc_id.h
@@ -29,14 +29,14 @@
#include <ostream>
struct UGCID {
- UGCID( );
- UGCID( int id );
+ UGCID();
+ UGCID(int id);
int id;
bool Valid();
- bool operator==( const UGCID& other ) const;
- bool operator!=( const UGCID& other ) const;
+ bool operator==(const UGCID& other) const;
+ bool operator!=(const UGCID& other) const;
};
-std::ostream& operator<<(std::ostream& os, const UGCID &mi );
+std::ostream& operator<<(std::ostream& os, const UGCID& mi);