Piotr's patch was missing many occurences of size_t. So,

using std::size_t;
This is the only way that we can ensure QCC support in the long term without having to think about it everytime.
This commit is contained in:
Benoit Jacob
2010-02-12 08:57:04 -05:00
parent c03bca21c4
commit f369dc873e
3 changed files with 23 additions and 19 deletions

View File

@@ -147,6 +147,10 @@ namespace Eigen {
#include "src/Core/Part.h"
#include "src/Core/CacheFriendlyProduct.h"
// we use size_t frequently and we'll never remember to prepend it with std:: everytime just to
// ensure QNX/QCC support
using std::size_t;
} // namespace Eigen
#include "src/Core/util/EnableMSVCWarnings.h"