Skip to content

Commit

Permalink
enqueue and dequeue symbols were mixed up in the operation logger
Browse files Browse the repository at this point in the history
  • Loading branch information
anhaas committed Aug 5, 2013
1 parent 338dd6c commit 0c6d68b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util/operation_logger.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ namespace scal {

enum LogType {
kDequeue = 0,
kEnqueue
kEnqueue = 1
};

char const kLogTypeSymbols[] = { '+', '-' };
char const kLogTypeSymbols[] = { '-', '+' };

template<typename T>
struct Operation {
Expand Down

0 comments on commit 0c6d68b

Please sign in to comment.