Skip to content

Commit a72c127

Browse files
committed
refactor: Rename FastIOStd to FastIOMMap for consistency and clarity in fast I/O implementation
1 parent 09cd186 commit a72c127

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/aplusb.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "../weilycoder/fast-io.hpp"
44
using namespace weilycoder;
55

6-
static FastIOStd<true> io;
6+
static FastIOMMap<true> io;
77

88
int main() {
99
uint64_t a = io.read_u64();

test/many_aplusb.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "../weilycoder/fast-io.hpp"
44
using namespace weilycoder;
55

6-
static FastIOStd<> io;
6+
static FastIOMMap<> io;
77

88
int main() {
99
size_t t = io.read_u64();

weilycoder/fast-io.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ template <typename Reader, typename Writer, bool debug = false> struct FastIO {
204204

205205
#if defined(__linux__) || defined(__unix__) || defined(__APPLE__)
206206
template <bool debug = false>
207-
using FastIOStd = FastIO<FastReadMMap, FastWriteFWrite<>, debug>;
207+
using FastIOMMap = FastIO<FastReadMMap, FastWriteFWrite<>, debug>;
208208
#endif
209209

210210
template <bool debug = false>

0 commit comments

Comments
 (0)