Skip to content

Commit

Permalink
Fix issue #184.
Browse files Browse the repository at this point in the history
  • Loading branch information
SpartanJ committed Sep 23, 2024
1 parent fe8aa03 commit a064eb2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/efsw/String.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
#include <cstdlib>
#include <cstring>
#include <efsw/base.hpp>
#include <fstream>
#include <iostream>
#include <locale>
#include <sstream>
Expand All @@ -24,7 +23,7 @@ namespace efsw {
* **/
class String {
public:
typedef Uint32 StringBaseType;
typedef char32_t StringBaseType;
typedef std::basic_string<StringBaseType> StringType;
typedef StringType::iterator Iterator; //! Iterator type
typedef StringType::const_iterator ConstIterator; //! Constant iterator type
Expand Down

0 comments on commit a064eb2

Please sign in to comment.