From bfa4e46172132deac22af0b6df1676090bf14d5f Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 18 Jan 2024 21:06:02 +0200 Subject: [PATCH] Move source files to src/ --- build/Jamfile.v2 | 2 +- apple_macro_check.cpp => src/apple_macro_check.cpp | 0 apple_macro_check.hpp => src/apple_macro_check.hpp | 0 ascii_check.cpp => src/ascii_check.cpp | 0 ascii_check.hpp => src/ascii_check.hpp | 0 assert_macro_check.cpp => src/assert_macro_check.cpp | 0 assert_macro_check.hpp => src/assert_macro_check.hpp | 0 copyright_check.cpp => src/copyright_check.cpp | 0 copyright_check.hpp => src/copyright_check.hpp | 0 crlf_check.cpp => src/crlf_check.cpp | 0 crlf_check.hpp => src/crlf_check.hpp | 0 deprecated_macro_check.cpp => src/deprecated_macro_check.cpp | 0 deprecated_macro_check.hpp => src/deprecated_macro_check.hpp | 0 end_check.cpp => src/end_check.cpp | 0 end_check.hpp => src/end_check.hpp | 0 inspect.cpp => src/inspect.cpp | 0 inspector.hpp => src/inspector.hpp | 0 license_check.cpp => src/license_check.cpp | 0 license_check.hpp => src/license_check.hpp | 0 link_check.cpp => src/link_check.cpp | 0 link_check.hpp => src/link_check.hpp | 0 minmax_check.cpp => src/minmax_check.cpp | 0 minmax_check.hpp => src/minmax_check.hpp | 0 path_name_check.cpp => src/path_name_check.cpp | 0 path_name_check.hpp => src/path_name_check.hpp | 0 tab_check.cpp => src/tab_check.cpp | 0 tab_check.hpp => src/tab_check.hpp | 0 time_string.hpp => src/time_string.hpp | 0 unnamed_namespace_check.cpp => src/unnamed_namespace_check.cpp | 0 unnamed_namespace_check.hpp => src/unnamed_namespace_check.hpp | 0 wrong_line_ends_test.cpp => src/wrong_line_ends_test.cpp | 0 31 files changed, 1 insertion(+), 1 deletion(-) rename apple_macro_check.cpp => src/apple_macro_check.cpp (100%) rename apple_macro_check.hpp => src/apple_macro_check.hpp (100%) rename ascii_check.cpp => src/ascii_check.cpp (100%) rename ascii_check.hpp => src/ascii_check.hpp (100%) rename assert_macro_check.cpp => src/assert_macro_check.cpp (100%) rename assert_macro_check.hpp => src/assert_macro_check.hpp (100%) rename copyright_check.cpp => src/copyright_check.cpp (100%) rename copyright_check.hpp => src/copyright_check.hpp (100%) rename crlf_check.cpp => src/crlf_check.cpp (100%) rename crlf_check.hpp => src/crlf_check.hpp (100%) rename deprecated_macro_check.cpp => src/deprecated_macro_check.cpp (100%) rename deprecated_macro_check.hpp => src/deprecated_macro_check.hpp (100%) rename end_check.cpp => src/end_check.cpp (100%) rename end_check.hpp => src/end_check.hpp (100%) rename inspect.cpp => src/inspect.cpp (100%) rename inspector.hpp => src/inspector.hpp (100%) rename license_check.cpp => src/license_check.cpp (100%) rename license_check.hpp => src/license_check.hpp (100%) rename link_check.cpp => src/link_check.cpp (100%) rename link_check.hpp => src/link_check.hpp (100%) rename minmax_check.cpp => src/minmax_check.cpp (100%) rename minmax_check.hpp => src/minmax_check.hpp (100%) rename path_name_check.cpp => src/path_name_check.cpp (100%) rename path_name_check.hpp => src/path_name_check.hpp (100%) rename tab_check.cpp => src/tab_check.cpp (100%) rename tab_check.hpp => src/tab_check.hpp (100%) rename time_string.hpp => src/time_string.hpp (100%) rename unnamed_namespace_check.cpp => src/unnamed_namespace_check.cpp (100%) rename unnamed_namespace_check.hpp => src/unnamed_namespace_check.hpp (100%) rename wrong_line_ends_test.cpp => src/wrong_line_ends_test.cpp (100%) diff --git a/build/Jamfile.v2 b/build/Jamfile.v2 index e3a53a0..962a4bd 100644 --- a/build/Jamfile.v2 +++ b/build/Jamfile.v2 @@ -9,7 +9,7 @@ project : requirements : - source-location .. + source-location ../src ; exe inspect diff --git a/apple_macro_check.cpp b/src/apple_macro_check.cpp similarity index 100% rename from apple_macro_check.cpp rename to src/apple_macro_check.cpp diff --git a/apple_macro_check.hpp b/src/apple_macro_check.hpp similarity index 100% rename from apple_macro_check.hpp rename to src/apple_macro_check.hpp diff --git a/ascii_check.cpp b/src/ascii_check.cpp similarity index 100% rename from ascii_check.cpp rename to src/ascii_check.cpp diff --git a/ascii_check.hpp b/src/ascii_check.hpp similarity index 100% rename from ascii_check.hpp rename to src/ascii_check.hpp diff --git a/assert_macro_check.cpp b/src/assert_macro_check.cpp similarity index 100% rename from assert_macro_check.cpp rename to src/assert_macro_check.cpp diff --git a/assert_macro_check.hpp b/src/assert_macro_check.hpp similarity index 100% rename from assert_macro_check.hpp rename to src/assert_macro_check.hpp diff --git a/copyright_check.cpp b/src/copyright_check.cpp similarity index 100% rename from copyright_check.cpp rename to src/copyright_check.cpp diff --git a/copyright_check.hpp b/src/copyright_check.hpp similarity index 100% rename from copyright_check.hpp rename to src/copyright_check.hpp diff --git a/crlf_check.cpp b/src/crlf_check.cpp similarity index 100% rename from crlf_check.cpp rename to src/crlf_check.cpp diff --git a/crlf_check.hpp b/src/crlf_check.hpp similarity index 100% rename from crlf_check.hpp rename to src/crlf_check.hpp diff --git a/deprecated_macro_check.cpp b/src/deprecated_macro_check.cpp similarity index 100% rename from deprecated_macro_check.cpp rename to src/deprecated_macro_check.cpp diff --git a/deprecated_macro_check.hpp b/src/deprecated_macro_check.hpp similarity index 100% rename from deprecated_macro_check.hpp rename to src/deprecated_macro_check.hpp diff --git a/end_check.cpp b/src/end_check.cpp similarity index 100% rename from end_check.cpp rename to src/end_check.cpp diff --git a/end_check.hpp b/src/end_check.hpp similarity index 100% rename from end_check.hpp rename to src/end_check.hpp diff --git a/inspect.cpp b/src/inspect.cpp similarity index 100% rename from inspect.cpp rename to src/inspect.cpp diff --git a/inspector.hpp b/src/inspector.hpp similarity index 100% rename from inspector.hpp rename to src/inspector.hpp diff --git a/license_check.cpp b/src/license_check.cpp similarity index 100% rename from license_check.cpp rename to src/license_check.cpp diff --git a/license_check.hpp b/src/license_check.hpp similarity index 100% rename from license_check.hpp rename to src/license_check.hpp diff --git a/link_check.cpp b/src/link_check.cpp similarity index 100% rename from link_check.cpp rename to src/link_check.cpp diff --git a/link_check.hpp b/src/link_check.hpp similarity index 100% rename from link_check.hpp rename to src/link_check.hpp diff --git a/minmax_check.cpp b/src/minmax_check.cpp similarity index 100% rename from minmax_check.cpp rename to src/minmax_check.cpp diff --git a/minmax_check.hpp b/src/minmax_check.hpp similarity index 100% rename from minmax_check.hpp rename to src/minmax_check.hpp diff --git a/path_name_check.cpp b/src/path_name_check.cpp similarity index 100% rename from path_name_check.cpp rename to src/path_name_check.cpp diff --git a/path_name_check.hpp b/src/path_name_check.hpp similarity index 100% rename from path_name_check.hpp rename to src/path_name_check.hpp diff --git a/tab_check.cpp b/src/tab_check.cpp similarity index 100% rename from tab_check.cpp rename to src/tab_check.cpp diff --git a/tab_check.hpp b/src/tab_check.hpp similarity index 100% rename from tab_check.hpp rename to src/tab_check.hpp diff --git a/time_string.hpp b/src/time_string.hpp similarity index 100% rename from time_string.hpp rename to src/time_string.hpp diff --git a/unnamed_namespace_check.cpp b/src/unnamed_namespace_check.cpp similarity index 100% rename from unnamed_namespace_check.cpp rename to src/unnamed_namespace_check.cpp diff --git a/unnamed_namespace_check.hpp b/src/unnamed_namespace_check.hpp similarity index 100% rename from unnamed_namespace_check.hpp rename to src/unnamed_namespace_check.hpp diff --git a/wrong_line_ends_test.cpp b/src/wrong_line_ends_test.cpp similarity index 100% rename from wrong_line_ends_test.cpp rename to src/wrong_line_ends_test.cpp