Update LanguageClass.h

Fix comments
This commit is contained in:
Derek "Turtle" Roe 2021-04-02 03:15:45 -05:00
parent 536ccbc894
commit 06a174d969
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
#pragma once
#pragma warning(disable:4786)
#include <string> //stl string
#include <map> //stl map
#include <list> //stl list
#include <string> // STL string
#include <map> // STL map
#include <list> // STL list
#include <Common/stdtypes.h>
typedef std::map<int32_t, std::string, std::less<int32_t> > LANG_STRINGS;