diff options
| author | Steven Moreland <smoreland@google.com> | 2016-11-28 18:37:07 -0800 |
|---|---|---|
| committer | Steven Moreland <smoreland@google.com> | 2016-11-29 15:05:31 -0800 |
| commit | d6e4f03acf5fa1e76b75e33af7a26f248a92be9a (patch) | |
| tree | 24f6a20868ddce4299be5e165904c0d8485837cf /health | |
| parent | 1c03ad8545ad518b99912ccb6c84b3c7638ab969 (diff) | |
| download | android_hardware_interfaces-d6e4f03acf5fa1e76b75e33af7a26f248a92be9a.tar.gz android_hardware_interfaces-d6e4f03acf5fa1e76b75e33af7a26f248a92be9a.tar.bz2 android_hardware_interfaces-d6e4f03acf5fa1e76b75e33af7a26f248a92be9a.zip | |
Remove HIDL_GENERATED from things written by hand.
find . -name "*.h" -exec sed -i 's/HIDL_GENERATED_\(.*\)_H_/\U\1_H/g' {}
+
They now match what would be generated by -Lc++-impl. This prevents
confusion over whether or not the files are autogenerated.
Change-Id: I4aa89a39907024aa9525df71ff3715979f431357
Similar commit: https://android-review.googlesource.com/#/c/305996/
Test: pass
Diffstat (limited to 'health')
| -rw-r--r-- | health/1.0/default/Health.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/health/1.0/default/Health.h b/health/1.0/default/Health.h index c05751f1e..92de26f5a 100644 --- a/health/1.0/default/Health.h +++ b/health/1.0/default/Health.h @@ -1,5 +1,5 @@ -#ifndef HIDL_GENERATED_android_hardware_health_V1_0_Health_H_ -#define HIDL_GENERATED_android_hardware_health_V1_0_Health_H_ +#ifndef ANDROID_HARDWARE_HEALTH_V1_0_HEALTH_H +#define ANDROID_HARDWARE_HEALTH_V1_0_HEALTH_H #include <android/hardware/health/1.0/IHealth.h> #include <hidl/Status.h> @@ -39,4 +39,4 @@ extern "C" IHealth* HIDL_FETCH_IHealth(const char* name); } // namespace hardware } // namespace android -#endif // HIDL_GENERATED_android_hardware_health_V1_0_Health_H_ +#endif // ANDROID_HARDWARE_HEALTH_V1_0_HEALTH_H |
