From bb9a899b7c45b830c6b70e2811130a41ebb31ee5 Mon Sep 17 00:00:00 2001 From: Carlo Zancanaro Date: Thu, 20 Sep 2012 15:19:49 +1000 Subject: Remove exceptions and C++11 features for LLVM. --- impl/Operator.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'impl/Operator.hpp') diff --git a/impl/Operator.hpp b/impl/Operator.hpp index e8d6ca7..b67591f 100644 --- a/impl/Operator.hpp +++ b/impl/Operator.hpp @@ -95,7 +95,7 @@ template struct Multiplication : public Operator { virtual Domain eval(const std::vector& arguments) const { Domain result = 1; - for (auto it = arguments.begin(), + for (typename std::vector::const_iterator it = arguments.begin(), end = arguments.end(); it != end; ++it) { -- cgit v1.2.3