Salome HOME
Removing compiler warning (unused argument)
authorYoann Audouin <yoann.audouin@edf.fr>
Mon, 26 Sep 2022 06:42:12 +0000 (08:42 +0200)
committerYoann Audouin <yoann.audouin@edf.fr>
Mon, 26 Sep 2022 06:42:12 +0000 (08:42 +0200)
src/MEDCoupling/MEDCouplingMemArray.hxx

index eb69d293b94912ca374b884ec699209e5c110553..cc846eeae19a9490457827feab740075a392647e 100755 (executable)
@@ -863,7 +863,7 @@ namespace MEDCoupling
     DataArrayChar *buildEmptySpecializedDAChar() const;
     DataArrayAsciiCharIterator *iterator();
     DataArrayAsciiChar *deepCopy() const;
-    DataArrayAsciiChar *copySorted(bool asc=true) const override { throw INTERP_KERNEL::Exception("DataArrayAsciiChar::copySorted : not implemented for DataArrayByte"); }
+    DataArrayAsciiChar *copySorted(bool asc=true) const override { (void)asc;throw INTERP_KERNEL::Exception("DataArrayAsciiChar::copySorted : not implemented for DataArrayByte"); }
     DataArrayAsciiChar *performCopyOrIncrRef(bool deepCopy) const;
     DataArrayAsciiChar *buildNewEmptyInstance() const { return DataArrayAsciiChar::New(); }
     char asciiCharValue() const;