Update for moving gBn/sConstructorMap into details.

Test: pass
Test: boots
Bug: 36075507
Change-Id: Ie897d042b77429de1be05b984a6a988cd2f3103c
diff --git a/generateCpp.cpp b/generateCpp.cpp
index bc4b859..a3c9a78 100644
--- a/generateCpp.cpp
+++ b/generateCpp.cpp
@@ -1050,7 +1050,7 @@
         out << "__attribute__((constructor))";
         out << "static void static_constructor() {\n";
         out.indent([&] {
-            out << "::android::hardware::gBnConstructorMap.set("
+            out << "::android::hardware::details::gBnConstructorMap.set("
                 << iface->localName()
                 << "::descriptor,\n";
             out.indent(2, [&] {
@@ -1064,7 +1064,7 @@
                 });
                 out << "});\n";
             });
-            out << "::android::hardware::gBsConstructorMap.set("
+            out << "::android::hardware::details::gBsConstructorMap.set("
                 << iface->localName()
                 << "::descriptor,\n";
             out.indent(2, [&] {
@@ -1085,10 +1085,10 @@
         out << "__attribute__((destructor))";
         out << "static void static_destructor() {\n";
         out.indent([&] {
-            out << "::android::hardware::gBnConstructorMap.erase("
+            out << "::android::hardware::details::gBnConstructorMap.erase("
                 << iface->localName()
                 << "::descriptor);\n";
-            out << "::android::hardware::gBsConstructorMap.erase("
+            out << "::android::hardware::details::gBsConstructorMap.erase("
                 << iface->localName()
                 << "::descriptor);\n";
         });