mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Prefix enum values with RIF_
FLOAT causes Cotire compile to fail
This commit is contained in:
@@ -46,8 +46,8 @@ enum RifEclipseOutputTableAlignment
|
||||
//==================================================================================================
|
||||
enum RifEclipseOutputTableDoubleFormat
|
||||
{
|
||||
SCIENTIFIC,
|
||||
FLOAT,
|
||||
RIF_SCIENTIFIC,
|
||||
RIF_FLOAT,
|
||||
};
|
||||
|
||||
//==================================================================================================
|
||||
@@ -64,7 +64,7 @@ struct RifEclipseOutputTableLine
|
||||
//==================================================================================================
|
||||
struct RifEclipseOutputTableDoubleFormatting
|
||||
{
|
||||
RifEclipseOutputTableDoubleFormatting(RifEclipseOutputTableDoubleFormat format = FLOAT, int width = 5)
|
||||
RifEclipseOutputTableDoubleFormatting(RifEclipseOutputTableDoubleFormat format = RIF_FLOAT, int width = 5)
|
||||
: format(format),
|
||||
width(width)
|
||||
{}
|
||||
|
||||
Reference in New Issue
Block a user