From deb5b7c7502116c4bbf38d2628fc04114fd5572b Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Fri, 3 Oct 2014 22:10:38 +0000 Subject: [PATCH] Add the missing modulo assign operator in the using list --- include/boost/phoenix/operator/arithmetic.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/boost/phoenix/operator/arithmetic.hpp b/include/boost/phoenix/operator/arithmetic.hpp index 03d2dcc..fda6277 100644 --- a/include/boost/phoenix/operator/arithmetic.hpp +++ b/include/boost/phoenix/operator/arithmetic.hpp @@ -42,6 +42,7 @@ namespace boost { namespace phoenix using proto::exprns_::operator-=; using proto::exprns_::operator*=; using proto::exprns_::operator/=; + using proto::exprns_::operator%=; using proto::exprns_::operator+; using proto::exprns_::operator-; using proto::exprns_::operator*;