Commit 8a7a9cb9 authored by Simon Giesecke's avatar Simon Giesecke

Problem: clang-format produces C++11 style nested templated arguments

Solution: Fixed C++ standard in clang-format config
parent d9dce8f0
......@@ -38,7 +38,7 @@ SpaceInEmptyParentheses: false
SpacesInAngles: false
SpacesInParentheses: false
SpacesInSquareBrackets: false
Standard: Cpp11
Standard: Cpp03
SortIncludes: false
......
......@@ -52,7 +52,7 @@ void benchmark_lookup (T &subscriptions_,
std::vector<unsigned char *> &queries_)
{
using namespace std::chrono;
std::vector<duration<long, std::nano>> samples_vec;
std::vector<duration<long, std::nano> > samples_vec;
samples_vec.reserve (samples);
for (std::size_t run = 0; run < warmup_runs; ++run) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment