Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 0fe4c196 authored by gsell's avatar gsell
Browse files

make enum unsigned short

parent 5914b5a9
No related branches found
No related tags found
1 merge request!388Resolve "reading fields in H5Block format fails if z-dimension is less than the number of cores"
......@@ -179,12 +179,13 @@ protected:
const std::vector<double>&,
const Vector_t& X) const;
enum { LX = 0, // low X
LY = 0, // low Y
LZ = 0, // low Z
HX = 4, // high X
HY = 2, // high Y
HZ = 1}; // high Z
enum : unsigned short {
LX = 0, // low X
LY = 0, // low Y
LZ = 0, // low Z
HX = 4, // high X
HY = 2, // high Y
HZ = 1}; // high Z
h5_file_t file_m;
std::vector<double> FieldstrengthEz_m; /**< 3D array with Ez */
......@@ -218,7 +219,7 @@ protected:
// vi: set et ts=4 sw=4 sts=4:
// Local Variables:
// mode:c
// mode:c++
// c-basic-offset: 4
// indent-tabs-mode: nil
// require-final-newline: nil
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment