From ee99a1b3be6a95a348e127751e03127df0ea8e82 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Tue, 3 Mar 2020 17:26:20 -0500 Subject: [PATCH] doc: TableHandler uint_64 type It looks like we never mentioned that this type is available. --- include/deal.II/base/table_handler.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/include/deal.II/base/table_handler.h b/include/deal.II/base/table_handler.h index 9fc847e3c1..c64bda0c56 100644 --- a/include/deal.II/base/table_handler.h +++ b/include/deal.II/base/table_handler.h @@ -45,11 +45,11 @@ namespace internal { /** * A TableEntry stores the value of a table entry. It can either be - * of type int, unsigned int, double or std::string. In essence, this - * structure is the same as boost::variant@ but we wrap this object in a structure - * for which we can write a function that can serialize it. This is also why - * the function is not in fact of type boost::any. + * of type int, unsigned int, std::uint64_t, double or std::string. In + * essence, this structure is the same as boost::variant@ but we wrap this object in a + * structure for which we can write a function that can serialize it. This is + * also why the function is not in fact of type boost::any. */ struct TableEntry { @@ -68,9 +68,9 @@ namespace internal /** * Return the value stored by this object. The template type T must be one - * of int,unsigned int,double,std::string and it must match - * the data type of the object originally stored in this TableEntry - * object. + * of int,unsigned int,std::uint64_t,double,std::string and it + * must match the data type of the object originally stored in this + * TableEntry object. */ template T @@ -78,7 +78,7 @@ namespace internal /** * Return the numeric value of this object if data has been stored in it - * either as an integer, an unsigned integer, or a double. + * either as an integer, an unsigned integer,std::uint64_t, or a double. * * @return double */ @@ -393,7 +393,7 @@ public: * Adds a column (if not yet existent) with the key key and adds * the value of type T to the column. Values of type T * must be convertible to one of int, unsigned int, double, - * std::string or a compiler error will result. + * std::uint64_t, std::string or a compiler error will result. */ template void -- 2.39.5