Skip to content

Commit

Permalink
Fixed Windows bug for conversion const int to LogLevel
Browse files Browse the repository at this point in the history
  • Loading branch information
marchartung committed Jun 30, 2015
1 parent 4f4dbe2 commit b1e4412
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -29,7 +29,7 @@ enum OutputFormat {CSV, MAT, BUFFER, EMPTY};


enum LogCategory {INIT = 0, NLS = 1, LS = 2, SOLV = 3, OUT = 4, EVT = 5, OTHER = 6, MOD = 7};
enum LogLevel {ERROR, WARNING, INFO, DEBUG};
enum LogLevel {ERROR = 0, WARNING = 1, INFO = 2, DEBUG = 3};
struct LogSettings
{
std::vector<LogLevel> modes;
Expand Down

0 comments on commit b1e4412

Please sign in to comment.