Address review comments

This commit is contained in:
Alan Griffiths 2020-04-09 10:36:08 +01:00
parent 544d8b7cfa
commit 6466935e72

View File

@ -46,7 +46,7 @@ private:
* compile-time configurable maximum depth.
*/
template <int max_depth = 2000>
class DepthGuard final /* final because non-virtual dtor */ {
class DepthGuard final {
public:
DepthGuard(int & depth_, const Mark& mark_, const std::string& msg_) : m_depth(depth_) {
++m_depth;