Remove internal header inclusion 81/242181/1
authorHwankyu Jhun <h.jhun@samsung.com>
Mon, 24 Aug 2020 23:35:04 +0000 (08:35 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Mon, 24 Aug 2020 23:35:04 +0000 (08:35 +0900)
Change-Id: Ie180a8b5850968de2a019d36158058e707199f4a
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
idlc/gen/c_gen_base_cb.h
idlc/gen/cpp_proxy_body_gen.cc
idlc/gen/cpp_stub_body_gen.cc

index aa20818120a218393c9974f7e7f06cd29a447ad9..f258cb6fcdca1f0390608cff76e1561d04e3de2a 100644 (file)
@@ -47,7 +47,6 @@ R"__c_cb(
 #include <dlog.h>
 #include <rpc-port.h>
 #include <rpc-port-parcel.h>
-#include <rpc-port-internal.h>
 )__c_cb";
 
 #endif  // IDLC_C_GEN_C_GEN_BASE_CB_H_
index fe5f74a051236d54357dbff028ff0709d8218333..06a739dea1739ae578096133d69a2cbd89e8948f 100644 (file)
@@ -38,7 +38,6 @@ void CppProxyBodyGen::OnInitGen(std::ofstream& stream) {
   stream << "#include <stdlib.h>" << NLine(1)
          << "#include <assert.h>" << NLine(1)
          << "#include <dlog.h>" << NLine(1)
-         << "#include <rpc-port-internal.h>" << NLine(1)
          <<  NLine(1)
          << "#include \"" << header_file << "\"" << NLine(2);
   GenLogTag(stream, "RPC_PORT_PROXY");
index e39d3e9716464b4cbadeec3cd48c85c45b3fe6e8..3c840b70d736ac04539c4c3dfdc73b2a563f3482 100644 (file)
@@ -40,7 +40,6 @@ void CppStubBodyGen::OnInitGen(std::ofstream& stream) {
          << "#include <assert.h>" << NLine(1)
          << "#include <libgen.h>" << NLine(1)
          << "#include <dlog.h>" << NLine(1)
-         << "#include <rpc-port-internal.h>" << NLine(1)
          <<  NLine(1)
          << "#include \"" << header_file << "\"" << NLine(2);
   GenLogTag(stream, "RPC_PORT_STUB");