[llvm] r204194 - C++ style comments
Jim Grosbach
grosbach at apple.com
Tue Mar 18 15:13:13 PDT 2014
Author: grosbach
Date: Tue Mar 18 17:13:13 2014
New Revision: 204194
URL: http://llvm.org/viewvc/llvm-project?rev=204194&view=rev
Log:
C++ style comments
Modified:
llvm/trunk/include/llvm/Support/MachO.h
Modified: llvm/trunk/include/llvm/Support/MachO.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/MachO.h?rev=204194&r1=204193&r2=204194&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/MachO.h (original)
+++ llvm/trunk/include/llvm/Support/MachO.h Tue Mar 18 17:13:13 2014
@@ -743,10 +743,10 @@ namespace llvm {
};
struct version_min_command {
- uint32_t cmd; /* LC_VERSION_MIN_MACOSX or
- LC_VERSION_MIN_IPHONEOS */
- uint32_t cmdsize; /* sizeof(struct version_min_command) */
- uint32_t version; /* X.Y.Z is encoded in nibbles xxxx.yy.zz */
+ uint32_t cmd; // LC_VERSION_MIN_MACOSX or
+ // LC_VERSION_MIN_IPHONEOS
+ uint32_t cmdsize; // sizeof(struct version_min_command)
+ uint32_t version; // X.Y.Z is encoded in nibbles xxxx.yy.zz
uint32_t reserved;
};
More information about the llvm-commits
mailing list