]> source.dussan.org Git - tigervnc.git/commitdiff
Remove useless const specifiers
authorPierre Ossman <ossman@cendio.se>
Wed, 4 Jan 2023 15:28:13 +0000 (16:28 +0100)
committerPierre Ossman <ossman@cendio.se>
Thu, 5 Jan 2023 15:43:34 +0000 (16:43 +0100)
These are just values, so setting const on them has no effect as the
caller will get a copy.

common/rfb/ClientParams.h
common/rfb/ServerParams.h

index 202cef4e2197042f1cfe239ad6f783686d65616e..a78ad14c3551dbf03eebabbeb0e99105e5d391bd 100644 (file)
@@ -62,8 +62,8 @@ namespace rfb {
       return !beforeVersion(major,minor+1);
     }
 
-    const int width() const { return width_; }
-    const int height() const { return height_; }
+    int width() const { return width_; }
+    int height() const { return height_; }
     const ScreenSet& screenLayout() const { return screenLayout_; }
     void setDimensions(int width, int height);
     void setDimensions(int width, int height, const ScreenSet& layout);
index ce0c722f17ee0ead444747f1a5b2028e61c85036..dba8b9a13dcaa2d0fd4c3e54d88ff710269d84f5 100644 (file)
@@ -51,8 +51,8 @@ namespace rfb {
       return !beforeVersion(major,minor+1);
     }
 
-    const int width() const { return width_; }
-    const int height() const { return height_; }
+    int width() const { return width_; }
+    int height() const { return height_; }
     const ScreenSet& screenLayout() const { return screenLayout_; }
     void setDimensions(int width, int height);
     void setDimensions(int width, int height, const ScreenSet& layout);