
* xios: XML-IO-SERVER library for IO management of climate models * xios: install to prefix directory * xios: add a test case * xios: define versions to use cache and mirror directories * xios: use proper svn URL for version 910 * xios: package url must be defined, otherwise uninstall fails * xios: add trunk version to allow building latest revision * xios: enable parallel build * xios: allow installation with mpif90 compiler wrappers * xios: use mpi variants of dependencies * xios: allow user to specify MPI launcher via MPIRUN environment variable * xios: prefer spack versions of blitz and boost (needed for gcc@7) * xios: enable builds with clang+gfortran on OSX * xios: use numeric versions for releases, @develop for trunk * xios: different patches required for @1.0 and @develop * xios: patch function for clang works across revisions * xios: link blitz library * xios: workaround bug 17782 in llvm * xios: whitespace adjustments for flake8 * xios: avoid bare except clause * xios: netcdf-fortran inherits ^netcdf+mpi from xios dependencies
12 lines
386 B
Diff
12 lines
386 B
Diff
--- a/src/duration.cpp 2017-12-28 10:45:09.000000000 +1100
|
|
+++ b/src/duration.cpp 2017-12-28 11:01:40.000000000 +1100
|
|
@@ -43,7 +43,7 @@
|
|
StdIStream& operator>>(StdIStream& in , CDuration& duration)
|
|
{
|
|
duration = NoneDu;
|
|
- double v = 1.0;
|
|
+ int v = 1;
|
|
char c = '/';
|
|
bool invalidUnit = false;
|
|
CDuration sentinel = NoneDu;
|