From: Martin Kronbichler Date: Sun, 19 Nov 2017 14:54:26 +0000 (+0100) Subject: Fix TableEntry for unsigned long long int. X-Git-Tag: v9.0.0-rc1~753^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d3ad4d04653e99a973a0688152165c604facc8c4;p=dealii.git Fix TableEntry for unsigned long long int. --- diff --git a/source/base/table_handler.cc b/source/base/table_handler.cc index 50d3c13f3f..61d1d2c8ef 100644 --- a/source/base/table_handler.cc +++ b/source/base/table_handler.cc @@ -55,6 +55,14 @@ namespace internal catch (...) {} + // ... then with unsigned long long int... + try + { + return boost::get(value); + } + catch (...) + {} + // ...and finally with double precision: try {