Renamed inc directory to const_fmt

This commit is contained in:
Andreas Tsouchlos 2022-02-09 17:51:37 +01:00
parent d26cf43b32
commit 55ff861f67
11 changed files with 9 additions and 11 deletions

View File

@ -9,7 +9,7 @@ if(NOT CMAKE_BUILD_TYPE)
endif()
include_directories(inc)
include_directories(.)
add_executable(logger src/main.cpp)

View File

@ -6,7 +6,7 @@
#include <iostream>
#include <tuple>
#include <format.h>
#include "format.h"
/*

View File

@ -1,6 +1,4 @@
//#include <iostream>
#include <Logger.h>
#include <const_fmt/Logger.h>
int main(int argc, char* argv[]) {
@ -12,4 +10,4 @@ int main(int argc, char* argv[]) {
// return formatted[6];
return 0;
}
}

View File

@ -1,4 +1,4 @@
#include <format.h>
#include <const_fmt/format.h>
#include <gtest/gtest.h>
@ -62,4 +62,4 @@ TEST(Format, negative_int) {
//TEST(Format, string) {
// // TODO
// EXPECT_EQ(true, false);
//}
//}

View File

@ -1,5 +1,5 @@
#include <gtest/gtest.h>
#include <parse.h>
#include <const_fmt/parse.h>
using namespace detail;
@ -93,4 +93,4 @@ TEST(Parse, ast_chars_and_nodes) {
' ', ' ', '-'};
EXPECT_EQ(parse_string<"{:06.3}ab d{:8s}{:.4} -">().value, control);
}
}

View File

@ -1,4 +1,4 @@
#include <utility.h>
#include <const_fmt/utility.h>
#include <gtest/gtest.h>
TEST(Utility, const_pow) {