1vanK преди 3 години
родител
ревизия
dbe52612dc
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      Source/Urho3D/Core/Variant.h

+ 2 - 2
Source/Urho3D/Core/Variant.h

@@ -814,13 +814,13 @@ public:
     /// Test for equality with an integer. To return true, both the type and value must match.
     /// Test for equality with an integer. To return true, both the type and value must match.
     bool operator ==(int rhs) const { return type_ == VAR_INT ? value_.int_ == rhs : false; }
     bool operator ==(int rhs) const { return type_ == VAR_INT ? value_.int_ == rhs : false; }
 
 
-    /// Test for equality with an unsigned 64 bit integer. To return true, both the type and value must match.
+    /// Test for equality with an unsigned integer. To return true, both the type and value must match.
     bool operator ==(unsigned rhs) const { return type_ == VAR_INT ? value_.int_ == static_cast<int>(rhs) : false; }
     bool operator ==(unsigned rhs) const { return type_ == VAR_INT ? value_.int_ == static_cast<int>(rhs) : false; }
 
 
     /// Test for equality with an 64 bit integer. To return true, both the type and value must match.
     /// Test for equality with an 64 bit integer. To return true, both the type and value must match.
     bool operator ==(long long rhs) const { return type_ == VAR_INT64 ? value_.int64_ == rhs : false; }
     bool operator ==(long long rhs) const { return type_ == VAR_INT64 ? value_.int64_ == rhs : false; }
 
 
-    /// Test for equality with an unsigned integer. To return true, both the type and value must match.
+    /// Test for equality with an unsigned 64 bit integer. To return true, both the type and value must match.
     bool operator ==(unsigned long long rhs) const { return type_ == VAR_INT64 ? value_.int64_ == static_cast<long long>(rhs) : false; }
     bool operator ==(unsigned long long rhs) const { return type_ == VAR_INT64 ? value_.int64_ == static_cast<long long>(rhs) : false; }
 
 
     /// Test for equality with a bool. To return true, both the type and value must match.
     /// Test for equality with a bool. To return true, both the type and value must match.