Skip to content

Commit

Permalink
Removed odd class operators
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrii Bilynskyi authored and Andrii Bilynskyi committed May 24, 2017
1 parent 214bad1 commit 1cfbc13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/safeout.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ namespace dbg
void protectorDestroy();
void protectorLock();
void protectorUnlock();
safeout & operator=(const safeout &);
safeout(const safeout &);
};

extern safeout sout;
Expand Down
2 changes: 2 additions & 0 deletions test/TraceParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ class TraceParser
static bool isTime(std::string time);
static bool isLevel(std::string level);
static bool isThread(std::string thread);
TraceParser & operator=(const TraceParser &);
TraceParser(const TraceParser &);

};

Expand Down

0 comments on commit 1cfbc13

Please sign in to comment.