summaryrefslogtreecommitdiff
path: root/tools/dcpdiff.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-21 01:57:06 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-21 01:57:06 +0100
commit76e3325a16cdf6d7220a61e2b5cfdb9c804cc32c (patch)
tree8c1b5e5dc2cec265469a0d8018b6d7396b089432 /tools/dcpdiff.cc
parent6c3db78c3d20ef064fa2a0ef38e65ca1ae69adb3 (diff)
Use enum class for the things in types.h
Diffstat (limited to 'tools/dcpdiff.cc')
-rw-r--r--tools/dcpdiff.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dcpdiff.cc b/tools/dcpdiff.cc
index 7da55ccc..a9d78712 100644
--- a/tools/dcpdiff.cc
+++ b/tools/dcpdiff.cc
@@ -83,7 +83,7 @@ help (string n)
void
note (NoteType t, string n)
{
- if (t == DCP_ERROR || verbose) {
+ if (t == NoteType::ERROR || verbose) {
cout << " " << n << "\n";
cout.flush ();
}