Follow naming conventions

This commit is contained in:
Victor Zverovich
2020-04-01 09:30:28 -07:00
parent e588b02b17
commit 73c8437485
3 changed files with 46 additions and 45 deletions
+2 -2
View File
@@ -489,9 +489,9 @@ TEST(FileTest, Fdopen) {
# ifdef FMT_LOCALE
TEST(LocaleTest, Strtod) {
fmt::Locale locale;
fmt::locale loc;
const char *start = "4.2", *ptr = start;
EXPECT_EQ(4.2, locale.strtod(ptr));
EXPECT_EQ(4.2, loc.strtod(ptr));
EXPECT_EQ(start + 3, ptr);
}
# endif