gcc10 Questions
1
I have installed gcc-10 compiler on my ubuntu 20.04. I needed to test the work of coroutine ts, so I found an example using coroutines and tried to compile it.
exemple:
#include <coroutine>
#...
Alkyd asked 27/11, 2020 at 15:45
2
In the following code:
#include <cstring>
template <unsigned len>
struct CharArray {
CharArray() {
memset(data_, 0, len);
}
char data_[len];
};
struct Foobar {
CharArray<5>...
1
© 2022 - 2025 — McMap. All rights reserved.