Skip to content

Commit 4b6b589

Browse files
committed
clang formatting
1 parent 446e536 commit 4b6b589

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

cpp/openlocationcode.h

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,16 @@ extern const size_t kInitialExponent;
106106
// Size of the initial grid in degrees. This is the size of the area represented
107107
// by a 10 character code, and is kEncodingBase ^ (2 - kPairCodeLength / 2).
108108
extern const double kGridSizeDegrees;
109-
// Internal method to convert latitude in degrees to the integer value for encoding.
109+
// Internal method to convert latitude in degrees to the integer value for
110+
// encoding.
110111
int64_t latitudeToInteger(double latitude);
111-
// Internal method to convert longitude in degrees to the integer value for encoding.
112+
// Internal method to convert longitude in degrees to the integer value for
113+
// encoding.
112114
int64_t longitudeToInteger(double longitude);
113-
// Internal method to encode using the integer values to avoid floating-point precision errors.
114-
std::string encodeIntegers(int64_t latitude, int64_t longitude, size_t code_length);
115+
// Internal method to encode using the integer values to avoid floating-point
116+
// precision errors.
117+
std::string encodeIntegers(int64_t latitude, int64_t longitude,
118+
size_t code_length);
115119
} // namespace internal
116120

117121
} // namespace openlocationcode

0 commit comments

Comments
 (0)