diff options
author | Carl Shapiro <cshapiro@google.com> | 2011-06-14 20:31:24 -0700 |
---|---|---|
committer | Carl Shapiro <cshapiro@google.com> | 2011-06-14 20:42:37 -0700 |
commit | 375fb116bcb817b37509ab579dbd55cdbb765cbf (patch) | |
tree | 8e033bfca03e94b0fc561f2bd6b94d5f8d11b0a3 /vm/AllocTracker.h | |
parent | 7baeded82e40352ebfb43b716e0b1dd752e72e7e (diff) | |
download | android_dalvik-375fb116bcb817b37509ab579dbd55cdbb765cbf.tar.gz android_dalvik-375fb116bcb817b37509ab579dbd55cdbb765cbf.tar.bz2 android_dalvik-375fb116bcb817b37509ab579dbd55cdbb765cbf.zip |
Normalize the include guard style.
An leading underscore followed by a capital letter is a reserved
name space in C and C++.
This change also moves any #include directives within the include
guard in some of the compiler/codegen/arm header files.
Change-Id: I9715e2c5301699d31886e61d0fe6e29483555a2a
Diffstat (limited to 'vm/AllocTracker.h')
-rw-r--r-- | vm/AllocTracker.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vm/AllocTracker.h b/vm/AllocTracker.h index 16d5168e4..dede39774 100644 --- a/vm/AllocTracker.h +++ b/vm/AllocTracker.h @@ -16,8 +16,8 @@ /* * Allocation tracking and reporting. */ -#ifndef _DALVIK_ALLOCTRACKER -#define _DALVIK_ALLOCTRACKER +#ifndef DALVIK_ALLOCTRACKER_H_ +#define DALVIK_ALLOCTRACKER_H_ /* initialization */ bool dvmAllocTrackerStartup(void); @@ -59,4 +59,4 @@ bool dvmGenerateTrackedAllocationReport(u1** pData, size_t* pDataLen); */ void dvmDumpTrackedAllocations(bool enable); -#endif /*_DALVIK_ALLOCTRACKER*/ +#endif // DALVIK_ALLOCTRACKER_H_ |