[gstreamermm: 1/3] Change the parameter names of constructors, to prevent member shadowing in value.hg.



commit 48db78d7af05eea162128424b6051975a64813b9
Author: medithe <mail wuehrer net>
Date:   Tue Jul 10 06:53:35 2018 +0000

    Change the parameter names of constructors, to prevent member shadowing in value.hg.

 gstreamer/src/value.hg | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/gstreamer/src/value.hg b/gstreamer/src/value.hg
index 5e18cd3..efdef5a 100644
--- a/gstreamer/src/value.hg
+++ b/gstreamer/src/value.hg
@@ -194,7 +194,7 @@ public:
 
   /** Constructs a Gst::Range (min - max).
    */
-  Range(T min, T max) : min(min), max(max) {}
+  Range(T _min, T _max) : min(_min), max(_max) {}
 
   /** Constructs an Gst::Range from another range.
    */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]