diff options
author | 2020-01-29 15:59:50 +0100 | |
---|---|---|
committer | 2020-01-29 09:59:50 -0500 | |
commit | c761a27e5c0e2847598d1c5c5e4d26c24944a516 (patch) | |
tree | 3ae338050a56da03deee40b7637e945aa866887d /src/devices/sound/megd.h | |
parent | 4da780c24327a45ffe499080a05aeb5e3579b589 (diff) |
fixed some clang-tidy warnings (nw) (#6229)
* fixed some readability-static-accessed-through-instance clang-tidy warnings (nw)
* fixed some readability-redundant-string-cstr clang-tidy warnings (nw)
* fixed some readability-redundant-control-flow clang-tidy warnings (nw)
* fixed some modernize-use-nullptr clang-tidy warnings (nw)
* fixed some performance-faster-string-find clang-tidy warnings (nw)
* fixed some performance-for-range-copy clang-tidy warnings (nw)
* fixed some performance-unnecessary-value-param clang-tidy warnings (nw)
Diffstat (limited to 'src/devices/sound/megd.h')
-rw-r--r-- | src/devices/sound/megd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/megd.h b/src/devices/sound/megd.h index 59a13aa0ea4..82bad8f4beb 100644 --- a/src/devices/sound/megd.h +++ b/src/devices/sound/megd.h @@ -33,7 +33,7 @@ private: std::string goffset(offs_t address) const; static inline u32 b(u64 opc, u32 start, u32 count); - static inline void append(std::string &r, std::string e); + static inline void append(std::string &r, const std::string &e); }; #endif |