*: add lost of "noexcept" specifications

This commit is contained in:
Max Kellermann
2017-06-03 21:33:44 +02:00
parent 62b03cfddf
commit a057b4f6d8
65 changed files with 246 additions and 241 deletions

View File

@@ -31,45 +31,45 @@ class MixRampInfo {
public:
MixRampInfo() = default;
void Clear() {
void Clear() noexcept {
start.clear();
end.clear();
}
gcc_pure
bool IsDefined() const {
bool IsDefined() const noexcept {
return !start.empty() || !end.empty();
}
gcc_pure
const char *GetStart() const {
const char *GetStart() const noexcept {
return start.empty() ? nullptr : start.c_str();
}
gcc_pure
const char *GetEnd() const {
const char *GetEnd() const noexcept {
return end.empty() ? nullptr : end.c_str();
}
void SetStart(const char *new_value) {
void SetStart(const char *new_value) noexcept {
if (new_value == nullptr)
start.clear();
else
start = new_value;
}
void SetStart(std::string &&new_value) {
void SetStart(std::string &&new_value) noexcept {
start = std::move(new_value);
}
void SetEnd(const char *new_value) {
void SetEnd(const char *new_value) noexcept {
if (new_value == nullptr)
end.clear();
else
end = new_value;
}
void SetEnd(std::string &&new_value) {
void SetEnd(std::string &&new_value) noexcept {
end = std::move(new_value);
}
};