Commit 4b62278a authored by Johannes Kopf's avatar Johannes Kopf Committed by Facebook Github Bot

fixing a compile error on windows

Summary:
This file only compiles with MSVC after I made the change in this diff.

The code was difficult to follow, so I am not sure if the template is needed here?

Reviewed By: yfeldblum

Differential Revision: D4656575

fbshipit-source-id: 19415623bdb1757b573f12cdc9d8544d716ce6f2
parent 623e0f3b
......@@ -270,7 +270,7 @@ void BaseFormatter<Derived, containerMode, Args...>::operator()(
"folly::format: may not have both default and explicit arg indexes");
}
asDerived().template doFormat(size_t(argIndex), arg, out);
asDerived().doFormat(size_t(argIndex), arg, out);
}
}
......
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