2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-22 03:42:19 +00:00

MSVC 6.0 regressions fixed.

This commit is contained in:
Jörg Walter
2003-08-12 21:32:46 +00:00
parent 7f06e0cf84
commit e5dbb628e1
10 changed files with 92 additions and 0 deletions

View File

@@ -138,7 +138,11 @@ int main (int argc, char *argv []) {
int scale = 1;
if (argc > 1)
#ifndef BOOST_NO_STDC_NAMESPACE
scale = std::atoi (argv [1]);
#else
scale = ::atoi (argv [1]);
#endif
#ifdef USE_FLOAT
header ("float, 3");