fix compile error

This commit is contained in:
2024-02-25 16:12:54 +00:00
parent 728819033f
commit c4c2a83252
4 changed files with 85 additions and 25 deletions

View File

@ -6,7 +6,7 @@
int main()
{
sjtu::vector<long long> v;
std::vector<int> v;
for (long long i = 0; i < 1LL << 20; ++i) {
v.push_back(i);
}