remove some more extra semicolons

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2020-03-16 13:37:13 -07:00
parent 6d91b5c7b2
commit 00b9f69c90
No known key found for this signature in database
GPG Key ID: 36D31CFA845F0E3B
4 changed files with 7 additions and 7 deletions

View File

@ -86,7 +86,7 @@ struct WrapVariant : BasicValue<T> {
template<typename T>
static WrapVariant<T> Variant(const T &_value) noexcept {
return WrapVariant<T>(_value);
};
}
template<typename T>
struct WrapFixedArray {
@ -103,7 +103,7 @@ template<typename T>
static WrapFixedArray<T> FixedArray(const T *_data,
size_t _size) noexcept {
return WrapFixedArray<T>(_data, _size);
};
}
template<typename... T>
struct WrapStruct {
@ -118,7 +118,7 @@ struct WrapStruct {
template<typename... T>
static WrapStruct<T...> Struct(const T&... values) noexcept {
return WrapStruct<T...>(values...);
};
}
} /* namespace ODBus */

View File

@ -41,6 +41,6 @@ public:
LockGuard &operator=(const LockGuard &) = delete;
};
};
}
#endif

View File

@ -28,6 +28,6 @@ namespace ixmlwrap {
const char *getFirstElementValue(IXML_Document *doc,
const char *name) noexcept;
};
}
#endif /* _IXMLWRAP_H_INCLUDED_ */

View File

@ -94,7 +94,7 @@ SetThreadIdlePriority() noexcept
#elif defined(_WIN32)
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_IDLE);
#endif
};
}
void
SetThreadRealtime()
@ -111,4 +111,4 @@ SetThreadRealtime()
if (linux_sched_setscheduler(0, policy, &sched_param) < 0)
throw MakeErrno("sched_setscheduler failed");
#endif // __linux__
};
}