src/util/s_to_n32_unsafe.h \
src/util/smart_ptr.h \
src/util/static_assert.h \
- src/util/strrreplace.h \
+ src/util/string_utils.h \
src/util/u32lim.h \
src/util/uniq_vector.h
SRC = \
#include "src/ir/skeleton/skeleton.h"
#include "src/parse/code.h"
#include "src/parse/loc.h"
-#include "src/util/strrreplace.h"
-#include "src/util/to_string.h"
+#include "src/util/string_utils.h"
namespace re2c
{
#include "src/ir/adfa/adfa.h"
#include "src/ir/skeleton/skeleton.h"
#include "src/util/counter.h"
-#include "src/util/strrreplace.h"
+#include "src/util/string_utils.h"
namespace re2c
{
#include "src/codegen/input_api.h"
#include "src/codegen/indent.h"
#include "src/conf/opt.h"
+#include "src/util/string_utils.h"
#include "src/globals.h"
namespace re2c
{
-template<typename T>
-static std::string to_string(const T &v)
-{
- std::ostringstream s;
- s << v;
- return s.str();
-}
-
InputAPI::InputAPI ()
: type_ (DEFAULT)
{}
#include "src/conf/msg.h"
#include "src/conf/opt.h"
#include "src/conf/warn.h"
-#include "src/util/strrreplace.h"
+#include "src/util/string_utils.h"
#include "src/globals.h"
namespace re2c
-#ifndef _RE2C_UTIL_STRRREPLACE_
-#define _RE2C_UTIL_STRRREPLACE_
+#ifndef _RE2C_UTIL_STRING_UTILS_
+#define _RE2C_UTIL_STRING_UTILS_
#include <sstream>
#include <string>
}
}
+template<typename T>
+static std::string to_string(const T &v)
+{
+ std::ostringstream s;
+ s << v;
+ return s.str();
+}
+
} // namespace re2c
-#endif // _RE2C_UTIL_STRRREPLACE_
+#endif // _RE2C_UTIL_STRING_UTILS_