@@ -43,8 +43,6 @@ class StreamHandler {
4343 * @tparam T The typeparam; must be stringable.
4444 * @param value The string to trim.
4545 * @return A new string with the specified characters trimmed.
46- *
47- * @copyright 2025 Procyon Systems Inh. Simon Cahill (s.cahill@procyon-systems.de)
4846 */
4947#if __cplusplus >= 201703
5048# if __cpp_concepts >= 201907
@@ -70,8 +68,6 @@ std::string trim(const T& value) {
7068 * @param value The string to trim.
7169 * @param trimChars The characters to trim from the string.
7270 * @return A new string with the specified characters trimmed.
73- *
74- * @copyright 2025 Procyon Systems Inh. Simon Cahill (s.cahill@procyon-systems.de)
7571 */
7672#if __cplusplus >= 201703
7773# if __cpp_concepts >= 201907
@@ -99,8 +95,6 @@ std::string trim(const T& value, const std::initializer_list<char>& trimChars)
9995 *
10096 * @return true If the string is empty or consists only of whitespace.
10197 * @return false Otherwise.
102- *
103- * @copyright 2025 Procyon Systems Inh. Simon Cahill (s.cahill@procyon-systems.de)
10498 */
10599template <typename T>
106100constexpr bool isWhitespaceOrEmpty (const T& str) {
@@ -113,8 +107,6 @@ constexpr bool isWhitespaceOrEmpty(const T& str) {
113107 * @tparam T The type of the value.
114108 * @param value The value to swap.
115109 * @return T The value with swapped endianness.
116- *
117- * @copyright 2025 Procyon Systems Inh. Simon Cahill (s.cahill@procyon-systems.de)
118110 */
119111template <typename T>
120112T swapEndianness (T value) {
0 commit comments