Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_fmt_helper.cpp2
-rw-r--r--tests/test_pattern_formatter.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_fmt_helper.cpp b/tests/test_fmt_helper.cpp
index a9db5d02..52141902 100644
--- a/tests/test_fmt_helper.cpp
+++ b/tests/test_fmt_helper.cpp
@@ -2,7 +2,7 @@
#include "includes.h"
using spdlog::memory_buf_t;
-using spdlog::details::fmt_helper::to_string_view;
+using spdlog::details::to_string_view;
void test_pad2(int n, const char *expected)
{
diff --git a/tests/test_pattern_formatter.cpp b/tests/test_pattern_formatter.cpp
index 76cac855..b89f51d4 100644
--- a/tests/test_pattern_formatter.cpp
+++ b/tests/test_pattern_formatter.cpp
@@ -2,7 +2,7 @@
#include "test_sink.h"
using spdlog::memory_buf_t;
-using spdlog::details::fmt_helper::to_string_view;
+using spdlog::details::to_string_view;
// log to str and return it
template<typename... Args>