From: Marco Borelli Date: Fri, 3 Apr 2015 15:44:58 +0000 (+0200) Subject: Fix integer type mismatch X-Git-Tag: v8.3.0-rc1~323^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c34b7cffc2f729a1192dcf283fd0931fff92ca7;p=dealii.git Fix integer type mismatch --- diff --git a/source/base/table_handler.cc b/source/base/table_handler.cc index fa49131bf0..bf7dd376f1 100644 --- a/source/base/table_handler.cc +++ b/source/base/table_handler.cc @@ -734,7 +734,7 @@ void TableHandler::clear_current_row () { // Figure out what is the currect (max) length of the columns // so that we "shave" one off. - unsigned long n = 0; + std::vector::size_type n = 0; for (std::map< std::string, Column >::iterator p = columns.begin(); p != columns.end(); ++p) n = std::max(n, p->second.entries.size());