diff --git a/applications/utilities/mesh/generation/foamyMesh/foamyQuadMesh/CV2DI.H b/applications/utilities/mesh/generation/foamyMesh/foamyQuadMesh/CV2DI.H index 9e04cdcbbf..70319d5088 100644 --- a/applications/utilities/mesh/generation/foamyMesh/foamyQuadMesh/CV2DI.H +++ b/applications/utilities/mesh/generation/foamyMesh/foamyQuadMesh/CV2DI.H @@ -31,7 +31,7 @@ inline Foam::label Foam::CV2D::insertPoint const label type ) { - uint nVert = number_of_vertices(); + unsigned int nVert = number_of_vertices(); return insertPoint(toPoint(p), nVert, type); } @@ -55,7 +55,7 @@ inline Foam::label Foam::CV2D::insertPoint const label type ) { - uint nVert = number_of_vertices(); + unsigned int nVert = number_of_vertices(); Vertex_handle vh = insert(p); diff --git a/src/OSspecific/POSIX/fileStat.C b/src/OSspecific/POSIX/fileStat.C index bf04835f25..9826983d64 100644 --- a/src/OSspecific/POSIX/fileStat.C +++ b/src/OSspecific/POSIX/fileStat.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -29,7 +29,6 @@ License #include #include -#include // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // diff --git a/src/OpenFOAM/primitives/ints/uint/uintIO.C b/src/OpenFOAM/primitives/ints/uint/uintIO.C index 859eb1f8f6..eb591db54c 100644 --- a/src/OpenFOAM/primitives/ints/uint/uintIO.C +++ b/src/OpenFOAM/primitives/ints/uint/uintIO.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -28,9 +28,9 @@ License // * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * // -uint Foam::readUint(Istream& is) +unsigned int Foam::readUint(Istream& is) { - uint val; + unsigned int val; is >> val; return val; diff --git a/src/OpenFOAM/primitives/ints/uint32/uint32.H b/src/OpenFOAM/primitives/ints/uint32/uint32.H index 07058dcdcc..3b0ad01c7a 100644 --- a/src/OpenFOAM/primitives/ints/uint32/uint32.H +++ b/src/OpenFOAM/primitives/ints/uint32/uint32.H @@ -119,7 +119,7 @@ public: return p_; } - //- Access to the uint value + //- Access to the uint32_t value operator uint32_t&() { return p_; diff --git a/src/OpenFOAM/primitives/ints/uint64/uint64.H b/src/OpenFOAM/primitives/ints/uint64/uint64.H index c4f3b581c6..dc19659462 100644 --- a/src/OpenFOAM/primitives/ints/uint64/uint64.H +++ b/src/OpenFOAM/primitives/ints/uint64/uint64.H @@ -119,7 +119,7 @@ public: return p_; } - //- Access to the uint value + //- Access to the uint64_t value operator uint64_t&() { return p_;