uint128_struct: address misunderstood review feedback.

TEST=util_test Int128.UInt128
R=rsesek@chromium.org

Review URL: https://codereview.chromium.org/590283002
This commit is contained in:
Mark Mentovai 2014-09-22 17:16:03 -04:00
parent fee5d8aea9
commit fec869992f
2 changed files with 3 additions and 1 deletions

View File

@ -17,6 +17,7 @@
#include <stdint.h>
#include "base/basictypes.h"
#include "build/build_config.h"
namespace crashpad {
@ -45,6 +46,8 @@ struct uint128_struct {
#endif
};
COMPILE_ASSERT(sizeof(uint128_struct) == 16, uint128_must_be_16_bytes);
} // namespace crashpad
#endif // CRASHPAD_UTIL_NUMERIC_INT128_H_

View File

@ -14,7 +14,6 @@
#include "util/numeric/int128.h"
#include "base/basictypes.h"
#include "gtest/gtest.h"
namespace {