Sfoglia il codice sorgente

Test was still using unordered_map instead of UnorderedMap

[skip ci]
Jorrit Rouwe 2 settimane fa
parent
commit
bfcb77c2f1
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      Samples/Tests/Test.h

+ 1 - 1
Samples/Tests/Test.h

@@ -143,6 +143,6 @@ protected:
 private:
 private:
 	bool			mNeedsRestart = false;
 	bool			mNeedsRestart = false;
 
 
-	using BodyLabels = unordered_map<BodyID, String>;
+	using BodyLabels = UnorderedMap<BodyID, String>;
 	BodyLabels		mBodyLabels;
 	BodyLabels		mBodyLabels;
 };
 };