From bcd9da1b38a71438dc06e118e19cedf35fb21990 Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Wed, 30 Nov 2022 17:46:25 +0100 Subject: [PATCH] r600/sfn: drop useless const specifier in return value Signed-off-by: Gert Wollny Part-of: --- .../drivers/r600/sfn/sfn_scheduler.cpp | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/gallium/drivers/r600/sfn/sfn_scheduler.cpp b/src/gallium/drivers/r600/sfn/sfn_scheduler.cpp index 7ffb8a70419..f967bb1e18f 100644 --- a/src/gallium/drivers/r600/sfn/sfn_scheduler.cpp +++ b/src/gallium/drivers/r600/sfn/sfn_scheduler.cpp @@ -870,43 +870,43 @@ template struct type_char { }; template <> struct type_char { - static const char value() { return 'A';}; + static char value() { return 'A';}; }; template <> struct type_char { - static const char value() { return 'G';}; + static char value() { return 'G';}; }; template <> struct type_char { - static const char value() { return 'E';}; + static char value() { return 'E';}; }; template <> struct type_char { - static const char value() { return 'T';}; + static char value() { return 'T';}; }; template <> struct type_char { - static const char value() { return 'F';}; + static char value() { return 'F';}; }; template <> struct type_char { - static const char value() { return 'M';}; + static char value() { return 'M';}; }; template <> struct type_char { - static const char value() { return 'R';}; + static char value() { return 'R';}; }; template <> struct type_char { - static const char value() { return 'X';}; + static char value() { return 'X';}; }; template <> struct type_char { - static const char value() { return 'S';}; + static char value() { return 'S';}; }; template <> struct type_char { - static const char value() { return 'I';}; + static char value() { return 'I';}; }; template