enum style

This commit is contained in:
Ben Burdette 2020-03-31 09:36:20 -06:00
parent 28d073e810
commit 09652f597c
2 changed files with 3 additions and 3 deletions

View file

@ -16,10 +16,10 @@ using std::endl;
namespace nix {
enum ErrLevel
typedef enum
{ elWarning
, elError
};
} ErrLevel;
class ColumnRange {
public:

View file

@ -40,7 +40,7 @@ int main()
printErrorInfo(StandardError()
.name("name")
.description("description")
.description("error description")
.nohint()
);