From 981c3363e6b66c5c7e175752317535a9a694dd23 Mon Sep 17 00:00:00 2001 From: Richard Roberts Date: Mon, 28 Jan 2013 17:41:41 +0000 Subject: [PATCH] Whitespace --- wrap/Module.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wrap/Module.cpp b/wrap/Module.cpp index 980246922..536bf62d3 100644 --- a/wrap/Module.cpp +++ b/wrap/Module.cpp @@ -407,9 +407,9 @@ void verifyReturnTypes(const vector& validtypes, const map& vt BOOST_FOREACH(const Name_Method& name_method, vt) { const T& t = name_method.second; BOOST_FOREACH(const ReturnValue& retval, t.returnVals) { - if (find(validtypes.begin(), validtypes.end(), retval.qualifiedType1("::")) == validtypes.end()) + if (find(validtypes.begin(), validtypes.end(), retval.qualifiedType1("::")) == validtypes.end()) throw DependencyMissing(retval.qualifiedType1("::"), t.name); - if (retval.isPair && find(validtypes.begin(), validtypes.end(), retval.qualifiedType2("::")) == validtypes.end()) + if (retval.isPair && find(validtypes.begin(), validtypes.end(), retval.qualifiedType2("::")) == validtypes.end()) throw DependencyMissing(retval.qualifiedType2("::"), t.name); } }