diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-21 01:57:06 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-21 01:57:06 +0100 |
| commit | 76e3325a16cdf6d7220a61e2b5cfdb9c804cc32c (patch) | |
| tree | 8c1b5e5dc2cec265469a0d8018b6d7396b089432 /src/asset.cc | |
| parent | 6c3db78c3d20ef064fa2a0ef38e65ca1ae69adb3 (diff) | |
Use enum class for the things in types.h
Diffstat (limited to 'src/asset.cc')
| -rw-r--r-- | src/asset.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asset.cc b/src/asset.cc index 49ec7251..8ac28afc 100644 --- a/src/asset.cc +++ b/src/asset.cc @@ -146,7 +146,7 @@ bool Asset::equals (std::shared_ptr<const Asset> other, EqualityOptions, NoteHandler note) const { if (_hash != other->_hash) { - note (DCP_ERROR, "Asset: hashes differ"); + note (NoteType::ERROR, "Asset: hashes differ"); return false; } |
