Tweak formatting. v2.15.162
authorCarl Hetherington <cth@carlh.net>
Wed, 8 Sep 2021 23:03:03 +0000 (01:03 +0200)
committerCarl Hetherington <cth@carlh.net>
Tue, 21 Sep 2021 07:47:22 +0000 (09:47 +0200)
src/lib/exceptions.cc
src/lib/exceptions.h

index 9350430f9b96fd912b9c4d2181a152e561dac65e..ebb607b9476b77f7969f81c3d5f78d18e1a0f68e 100644 (file)
@@ -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))
 {
 
index 5cbf6994154dadaeda169130cd82ac2ddaf48637..d0ba1f068ed23e3f62e3387a3f82dd1fa03df1a7 100644 (file)
@@ -377,7 +377,7 @@ public:
 class GLError : public std::runtime_error
 {
 public:
-       GLError (char const * last, int e);
+       GLError (char const* last, int e);
 };