COMMON: Remove USE_CXX11 checks, it is now always present

This commit is contained in:
Eugene Sandulenko 2021-10-31 11:52:29 +02:00
parent e5a60d34cc
commit c544e5119b
No known key found for this signature in database
GPG key ID: 014D387312D34F08
8 changed files with 3 additions and 33 deletions

View file

@ -172,11 +172,9 @@ bool String::contains(uint32 x) const {
return false;
}
#ifdef USE_CXX11
bool String::contains(char32_t x) const {
return contains((uint32)x);
}
#endif
#ifndef SCUMMVM_UTIL