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.cpp')
-rw-r--r--Source/Steam/ugc_id.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/Source/Steam/ugc_id.cpp b/Source/Steam/ugc_id.cpp
index 47d21cb1..4236f9e1 100644
--- a/Source/Steam/ugc_id.cpp
+++ b/Source/Steam/ugc_id.cpp
@@ -23,25 +23,24 @@
#include "ugc_id.h"
UGCID::UGCID() : id(-1) {
-
}
-UGCID::UGCID( int _id ) : id(_id) {
+UGCID::UGCID(int _id) : id(_id) {
}
bool UGCID::Valid() {
return id != -1;
}
-bool UGCID::operator==( const UGCID& other ) const {
- return this->id == other.id;
+bool UGCID::operator==(const UGCID& other) const {
+ return this->id == other.id;
}
-bool UGCID::operator!=( const UGCID& other ) const {
+bool UGCID::operator!=(const UGCID& other) const {
return this->id != other.id;
}
-std::ostream& operator<<(std::ostream& os, const UGCID &mi ) {
+std::ostream& operator<<(std::ostream& os, const UGCID& mi) {
os << mi.id;
return os;
}