summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Wang2022-03-05 21:18:23 -0600
committerAnthony Wang2022-03-05 21:18:23 -0600
commitfb116616373787c25ce866da43e0c79f9fb26ed6 (patch)
treebfaaf99a02a6998acce76629824c31f9a60250ef
parenteed6ab5683471f08d2c1de322f28afc0dc80c071 (diff)
Use const instead of constexprHEADmaster
-rw-r--r--1.cpp4
-rw-r--r--2.cpp4
-rw-r--r--3.cpp4
3 files changed, 6 insertions, 6 deletions
diff --git a/1.cpp b/1.cpp
index 926f277..4ad84f2 100644
--- a/1.cpp
+++ b/1.cpp
@@ -4,10 +4,10 @@
using namespace std;
using ll = long long;
using ii = pair<int, int>;
-constexpr int MX = 1e5+5;
+const int MX = 1e5+5;
int main() {
cin.tie(0)->sync_with_stdio(0);
-} \ No newline at end of file
+}
diff --git a/2.cpp b/2.cpp
index 926f277..4ad84f2 100644
--- a/2.cpp
+++ b/2.cpp
@@ -4,10 +4,10 @@
using namespace std;
using ll = long long;
using ii = pair<int, int>;
-constexpr int MX = 1e5+5;
+const int MX = 1e5+5;
int main() {
cin.tie(0)->sync_with_stdio(0);
-} \ No newline at end of file
+}
diff --git a/3.cpp b/3.cpp
index 926f277..4ad84f2 100644
--- a/3.cpp
+++ b/3.cpp
@@ -4,10 +4,10 @@
using namespace std;
using ll = long long;
using ii = pair<int, int>;
-constexpr int MX = 1e5+5;
+const int MX = 1e5+5;
int main() {
cin.tie(0)->sync_with_stdio(0);
-} \ No newline at end of file
+}