summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibPDF/Operator.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibPDF/Operator.h')
-rw-r--r--Userland/Libraries/LibPDF/Operator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibPDF/Operator.h b/Userland/Libraries/LibPDF/Operator.h
index 88ee18991c..89e66b8690 100644
--- a/Userland/Libraries/LibPDF/Operator.h
+++ b/Userland/Libraries/LibPDF/Operator.h
@@ -114,7 +114,7 @@ public:
VERIFY_NOT_REACHED();
}
- static const char* operator_name(OperatorType operator_type)
+ static char const* operator_name(OperatorType operator_type)
{
#define V(name, snake_name, symbol) \
if (operator_type == OperatorType::name) \
@@ -130,7 +130,7 @@ public:
VERIFY_NOT_REACHED();
}
- static const char* operator_symbol(OperatorType operator_type)
+ static char const* operator_symbol(OperatorType operator_type)
{
#define V(name, snake_name, symbol) \
if (operator_type == OperatorType::name) \