Skip to content

Commit

Permalink
fix namespace misuse: Part 6 (facebookincubator#95)
Browse files Browse the repository at this point in the history
Summary:

Directory:
//dwio/nimble/tools/

Differential Revision: D64255703
  • Loading branch information
Hanqi Wu authored and facebook-github-bot committed Oct 15, 2024
1 parent 43054ea commit d21cccf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dwio/nimble/tools/EncodingSelectionLogger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ DEFINE_string(
DEFINE_string(read_factors, "", "Read factors to use for encoding selection.");
DEFINE_double(compression_acceptance_ratio, 0.9, "");

using namespace ::facebook;
using namespace facebook;

template <typename T>
void logEncodingSelection(const std::vector<std::string>& source) {
Expand Down
2 changes: 1 addition & 1 deletion dwio/nimble/tools/NimbleDump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include "folly/cli/NestedCommandLineApp.h"
#include "velox/common/base/StatsReporter.h"

using namespace ::facebook;
using namespace facebook;
namespace po = ::boost::program_options;

template <typename T>
Expand Down

0 comments on commit d21cccf

Please sign in to comment.