Fix cpplint whitespace/comments issues
Change-Id: Iae286862c85fb8fd8901eae1204cd6d271d69496
diff --git a/runtime/runtime_support.cc b/runtime/runtime_support.cc
index c933621..d28aad1 100644
--- a/runtime/runtime_support.cc
+++ b/runtime/runtime_support.cc
@@ -49,7 +49,7 @@
return static_cast<int64_t>(0x7fffffffffffffffULL);
} else if (d <= kMinLong) {
return static_cast<int64_t>(0x8000000000000000ULL);
- } else if (d != d) { // NaN case
+ } else if (d != d) { // NaN case
return 0;
} else {
return static_cast<int64_t>(d);
@@ -63,7 +63,7 @@
return static_cast<int64_t>(0x7fffffffffffffffULL);
} else if (f <= kMinLong) {
return static_cast<int64_t>(0x8000000000000000ULL);
- } else if (f != f) { // NaN case
+ } else if (f != f) { // NaN case
return 0;
} else {
return static_cast<int64_t>(f);
@@ -77,7 +77,7 @@
return static_cast<int32_t>(0x7fffffffUL);
} else if (d <= kMinInt) {
return static_cast<int32_t>(0x80000000UL);
- } else if (d != d) { // NaN case
+ } else if (d != d) { // NaN case
return 0;
} else {
return static_cast<int32_t>(d);
@@ -91,7 +91,7 @@
return static_cast<int32_t>(0x7fffffffUL);
} else if (f <= kMinInt) {
return static_cast<int32_t>(0x80000000UL);
- } else if (f != f) { // NaN case
+ } else if (f != f) { // NaN case
return 0;
} else {
return static_cast<int32_t>(f);