Drop unnecessary semicolon from end of file
Remove unnecessary semicolon to avoid a warning about C++98 incompatibility: error: extra ';' outside of a function is incompatible with C++98 [-Werror,-Wc++98-compat-extra-semi] Test: Built an AIDL interface with trace.h methods, ran on device, collected traces. Change-Id: I307a36eeef861d4c28aa85dc3e0b15500bfac7c8
This commit is contained in:
parent
c04410ed69
commit
b34bfce1d0
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ void ATrace_setCounter(const char* counterName, int64_t counterValue) __INTRODUC
|
|||
#endif /* __ANDROID_API__ >= 29 */
|
||||
|
||||
#ifdef __cplusplus
|
||||
};
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // ANDROID_NATIVE_TRACE_H
|
||||
|
|
Loading…
Reference in a new issue