From d42d989ef670f3aef3acaf799bb56a0cb64bab37 Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 31 Aug 2013 20:05:53 +0400 Subject: [PATCH] Fix error while building on non-c++0x compilers --- src/checkpoints.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/checkpoints.h b/src/checkpoints.h index 1585126..101645e 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -27,7 +27,7 @@ namespace Checkpoints // Advisory checkpoints policy, perform conflicts verification but don't try to resolve them ADVISORY = 1, // Permissive checkpoints policy, don't perform any checking - PERMISSIVE = 2, + PERMISSIVE = 2 }; // Returns true if block passes checkpoint checks -- 1.7.1