aboutsummaryrefslogtreecommitdiff
path: root/libbrep
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2025-01-15 14:44:26 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2025-01-15 14:44:26 +0200
commit92ef110bb927db685f4b7740d7e20e67eabe7e8d (patch)
treeaf60f827df94586f7c49a772690c09b4bd275319 /libbrep
parent4de6640c0d61a3c36a606eac01a8c2df8e212b03 (diff)
ci-github: Trim leading/trailing whitespaces in webhook secret
Diffstat (limited to 'libbrep')
-rw-r--r--libbrep/utility.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/libbrep/utility.hxx b/libbrep/utility.hxx
index fce8fb5..1925d01 100644
--- a/libbrep/utility.hxx
+++ b/libbrep/utility.hxx
@@ -12,7 +12,7 @@
#include <algorithm> // *
#include <libbutl/utility.hxx> // icasecmp(), reverse_iterate(),
- // operator<<(ostream, exception)
+ // operator<<(ostream, exception), etc
namespace brep
{
@@ -28,6 +28,9 @@ namespace brep
// <libbutl/utility.hxx>
//
using butl::utf8;
+ using butl::trim;
+ using butl::trim_left;
+ using butl::trim_right;
using butl::icasecmp;
using butl::reverse_iterate;
}