Update template.cc
Signed-off-by: subcrip <contact@subc.rip>
This commit is contained in:
parent
bb0883c57c
commit
a009af4cf5
|
@ -1,5 +1,5 @@
|
||||||
// #pragma GCC target("popcnt,lzcnt,abm,bmi,bmi2")
|
// #pragma GCC target("popcnt,lzcnt,abm,bmi,bmi2")
|
||||||
#pragma GCC optimize("Ofast")
|
#pragma GCC optimize("Ofast,unroll-loops")
|
||||||
/************* This code requires C++17. ***************/
|
/************* This code requires C++17. ***************/
|
||||||
|
|
||||||
#include<bits/stdc++.h>
|
#include<bits/stdc++.h>
|
||||||
|
@ -541,7 +541,7 @@ void solve() {
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
#if __cplusplus < 201402L or defined(_MSC_VER) and not defined(__clang__)
|
#if __cplusplus < 201402L or defined(_MSC_VER) and not defined(__clang__)
|
||||||
assert(false && "incompatible compiler variant detected.");
|
static_assert(false, "incompatible compiler variant detected.");
|
||||||
#endif
|
#endif
|
||||||
untie;
|
untie;
|
||||||
prep();
|
prep();
|
||||||
|
|
Loading…
Reference in New Issue