Browse Source

Test was still using unordered_map instead of UnorderedMap

[skip ci]
Jorrit Rouwe 2 weeks ago
parent
commit
bfcb77c2f1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Samples/Tests/Test.h

+ 1 - 1
Samples/Tests/Test.h

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