/*** Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: auString.hpp Date: 2022-2-1 Author: Reece ***/ #pragma once //#include "tinyutf8.h" //#define AU_STRING_IS_TINYUTF_EXPERIMENT #if defined(AURORA_ROXTL_CONTAINERS_USE_PURE) using AuString = std::string; #elif defined(AURORA_ROXTL_STRING_USE_STR_ALLOCATOR) using AuString = std::basic_string, Aurora::Memory::StringAllocator>; #else using AuString = std::basic_string, Aurora::Memory::StringAllocator>; //using AuString = std::string; #endif