From: Carl Hetherington Date: Wed, 8 Sep 2021 23:03:03 +0000 (+0200) Subject: Tweak formatting. X-Git-Tag: v2.15.162 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=38e89b25f6042d7a9dc023bbdeff98b09cbdd26f;p=dcpomatic.git Tweak formatting. --- diff --git a/src/lib/exceptions.cc b/src/lib/exceptions.cc index 9350430f9..ebb607b94 100644 --- a/src/lib/exceptions.cc +++ b/src/lib/exceptions.cc @@ -125,7 +125,7 @@ KDMError::KDMError (string s, string d) } -GLError::GLError (char const * last, int e) +GLError::GLError (char const* last, int e) : runtime_error (String::compose("%1 failed %2", last, e)) { diff --git a/src/lib/exceptions.h b/src/lib/exceptions.h index 5cbf69941..d0ba1f068 100644 --- a/src/lib/exceptions.h +++ b/src/lib/exceptions.h @@ -377,7 +377,7 @@ public: class GLError : public std::runtime_error { public: - GLError (char const * last, int e); + GLError (char const* last, int e); };