Skip to content

Commit adc560b

Browse files
committed
Rename string_streamer.hpp to string_stream_util.hpp
This file will eventually go away too, once floating point formatting no longer needs it.
1 parent 72eb70f commit adc560b

File tree

5 files changed

+3
-6
lines changed

5 files changed

+3
-6
lines changed

bench/util/stream_util.hpp

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
#pragma once
22

3-
#include "fly/types/string/detail/string_streamer.hpp"
4-
5-
#include <iomanip>
63
#include <locale>
74
#include <ostream>
85

build/win/libfly/libfly.vcxproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@
224224
<ClInclude Include="..\..\..\fly\types\string\detail\string_formatter.hpp" />
225225
<ClInclude Include="..\..\..\fly\types\string\detail\string_formatter_types.hpp" />
226226
<ClInclude Include="..\..\..\fly\types\string\detail\string_lexer.hpp" />
227-
<ClInclude Include="..\..\..\fly\types\string\detail\string_streamer.hpp" />
227+
<ClInclude Include="..\..\..\fly\types\string\detail\string_stream_util.hpp" />
228228
<ClInclude Include="..\..\..\fly\types\string\detail\string_traits.hpp" />
229229
<ClInclude Include="..\..\..\fly\types\string\detail\string_unicode.hpp" />
230230
<ClInclude Include="..\..\..\fly\types\string\string.hpp" />

build/win/libfly/libfly.vcxproj.filters

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@
283283
<ClInclude Include="..\..\..\fly\types\string\detail\string_lexer.hpp">
284284
<Filter>types\string\detail</Filter>
285285
</ClInclude>
286-
<ClInclude Include="..\..\..\fly\types\string\detail\string_streamer.hpp">
286+
<ClInclude Include="..\..\..\fly\types\string\detail\string_stream_util.hpp">
287287
<Filter>types\string\detail</Filter>
288288
</ClInclude>
289289
<ClInclude Include="..\..\..\fly\types\string\detail\string_traits.hpp">

fly/types/string/detail/string_formatter.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "fly/traits/traits.hpp"
44
#include "fly/types/string/detail/string_classifier.hpp"
55
#include "fly/types/string/detail/string_formatter_types.hpp"
6-
#include "fly/types/string/detail/string_streamer.hpp"
6+
#include "fly/types/string/detail/string_stream_util.hpp"
77
#include "fly/types/string/detail/string_traits.hpp"
88
#include "fly/types/string/detail/string_unicode.hpp"
99
#include "fly/types/string/string_literal.hpp"

0 commit comments

Comments
 (0)