Skip to content

Commit

Permalink
format2
Browse files Browse the repository at this point in the history
  • Loading branch information
linrrzqqq committed Nov 29, 2024
1 parent e8333c3 commit 8dfe7b6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion be/src/gutil/strings/numbers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
#include <ctype.h>
#include <errno.h>
#include <float.h> // for DBL_DIG and FLT_DIG
#include <inttypes.h>
#include <math.h> // for HUGE_VAL
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include <sys/types.h>
#include <limits>
#include <ostream>
Expand All @@ -30,6 +30,7 @@ using std::string;
#include <fmt/format.h>

#include "common/logging.h"

#include "gutil/gscoped_ptr.h"
#include "gutil/integral_types.h"
#include "gutil/stringprintf.h"
Expand Down
3 changes: 2 additions & 1 deletion be/src/gutil/strings/util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,13 @@ using std::string;
using std::vector;

#include "common/logging.h"

#include "gutil/stl_util.h" // for string_as_array, STLAppendToString
#include "gutil/stringprintf.h"
#include "gutil/strings/ascii_ctype.h"
#include "gutil/strings/numbers.h"
#include "gutil/strings/stringpiece.h"
#include "gutil/utf/utf.h"
#include "gutil/stringprintf.h"

#ifdef OS_WINDOWS
#ifdef min // windows.h defines this to something silly
Expand Down

0 comments on commit 8dfe7b6

Please sign in to comment.