Codechange: If something is a vector of strings, use a vector of strings instead of an AutoFreeSmallVector.
This commit is contained in:
@@ -13,6 +13,8 @@
|
||||
#define STRING_TYPE_H
|
||||
|
||||
#include "core/enum_type.hpp"
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
/** A non-breaking space. */
|
||||
#define NBSP "\xC2\xA0"
|
||||
@@ -53,4 +55,8 @@ enum StringValidationSettings {
|
||||
};
|
||||
DECLARE_ENUM_AS_BIT_SET(StringValidationSettings)
|
||||
|
||||
|
||||
/** Type for a list of strings. */
|
||||
typedef std::vector<std::string> StringList;
|
||||
|
||||
#endif /* STRING_TYPE_H */
|
||||
|
Reference in New Issue
Block a user