[NFC] Remove const from return value of function
authorJuan Manuel MARTINEZ CAAMAÑO <juamarti@amd.com>
Tue, 6 Dec 2022 09:22:52 +0000 (04:22 -0500)
committerJuan Manuel MARTINEZ CAAMAÑO <juamarti@amd.com>
Tue, 6 Dec 2022 09:46:33 +0000 (04:46 -0500)
clang/lib/Driver/ToolChains/ROCm.h

index 600c8b3..5c1431f 100644 (file)
@@ -266,7 +266,7 @@ public:
   void detectHIPRuntime();
 
   /// Get the values for --rocm-device-lib-path arguments
-  const ArrayRef<std::string> getRocmDeviceLibPathArg() const {
+  ArrayRef<std::string> getRocmDeviceLibPathArg() const {
     return RocmDeviceLibPathArg;
   }