Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cpplint.py: relax checks for "using namespace" declarations for impor…
…ting custom literals. For example, the standard library encourages "using namespace" like: ``` using namespace std::literals::chrono_literals (since C++14) using namespace std::literals::complex_literals (since C++14) using namespace std::literals::string_literals (since C++14) using namespace std::literals::string_view_literals (since C++17) ``` so those shouldn't result in lint errors. See https://en.cppreference.com/w/cpp/symbol_index/literals
- Loading branch information