Fix function application in mp_map_update

This commit is contained in:
Peter Dimov
2017-03-14 22:40:47 +02:00
parent 6fb4cee7b2
commit 5a4fb7f832
2 changed files with 3 additions and 7 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
using boost::mp_int;
template<class T> using inc = mp_int<T::value + 1>;
template<class T, class U> using inc = mp_int<U::value + 1>;
int main()
{