aboutsummaryrefslogtreecommitdiff
path: root/aidl_to_cpp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'aidl_to_cpp.cpp')
-rw-r--r--aidl_to_cpp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/aidl_to_cpp.cpp b/aidl_to_cpp.cpp
index 987aba57..aab00247 100644
--- a/aidl_to_cpp.cpp
+++ b/aidl_to_cpp.cpp
@@ -348,7 +348,7 @@ std::string CppHeaderForType(const AidlDefinedType& defined_type) {
if (auto unstructured = AidlCast<AidlParcelable>(defined_type); unstructured) {
const std::string cpp_header = unstructured->GetCppHeader();
AIDL_FATAL_IF(cpp_header.empty(), unstructured)
- << "Parcelable " << unstructured->GetCanonicalName() << " has no C++ header defined.";
+ << "Parcelable " << unstructured->GetCanonicalName() << " has no cpp_header defined.";
return cpp_header;
}
return HeaderFile(defined_type, ClassNames::RAW, /*use_os_sep=*/false);