From 67bd41984bb0a4744916758f6e5797ed0de407fd Mon Sep 17 00:00:00 2001 From: Jonghwa Lee Date: Mon, 16 Dec 2024 18:23:16 +0900 Subject: [PATCH] [compiler/crew] Export PConfigJson header for external use (#14460) It moves PConfigJson header file to include directory for reuse in other modules. ONE-DCO-1.0-Signed-off-by: Jonghwa Lee --- compiler/crew/{src => include/crew}/PConfigJson.h | 0 compiler/crew/src/PConfig.cpp | 2 +- compiler/crew/src/PConfigJson.cpp | 2 +- compiler/crew/src/PConfigJson.test.cpp | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename compiler/crew/{src => include/crew}/PConfigJson.h (100%) diff --git a/compiler/crew/src/PConfigJson.h b/compiler/crew/include/crew/PConfigJson.h similarity index 100% rename from compiler/crew/src/PConfigJson.h rename to compiler/crew/include/crew/PConfigJson.h diff --git a/compiler/crew/src/PConfig.cpp b/compiler/crew/src/PConfig.cpp index b8e7c3e441c..dbfca60ebf3 100644 --- a/compiler/crew/src/PConfig.cpp +++ b/compiler/crew/src/PConfig.cpp @@ -17,7 +17,7 @@ #include "crew/PConfig.h" #include "crew/PConfigIni.h" -#include "PConfigJson.h" +#include "crew/PConfigJson.h" #include diff --git a/compiler/crew/src/PConfigJson.cpp b/compiler/crew/src/PConfigJson.cpp index 5af0ebddd39..db2e136e191 100644 --- a/compiler/crew/src/PConfigJson.cpp +++ b/compiler/crew/src/PConfigJson.cpp @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "PConfigJson.h" +#include "crew/PConfigJson.h" #include #include diff --git a/compiler/crew/src/PConfigJson.test.cpp b/compiler/crew/src/PConfigJson.test.cpp index f8afabc3dcb..890c239f122 100644 --- a/compiler/crew/src/PConfigJson.test.cpp +++ b/compiler/crew/src/PConfigJson.test.cpp @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "PConfigJson.h" +#include "crew/PConfigJson.h" #include