Skip to content

Commit d30508f

Browse files
committed
Removed copyright
1 parent a3e3323 commit d30508f

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

include/libdbc/utils/utils.hpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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
*/
10599
template<typename T>
106100
constexpr 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
*/
119111
template<typename T>
120112
T swapEndianness(T value) {

0 commit comments

Comments
 (0)