I am trying to build 5G-LENA on Windows (MSYS2 MINGW64). Steps are:
1. Install all required prerequisites
2. /ns3 configure --enable-examples --enable-tests
3. ./ns3 build
But it throws:
examples/cttc-nr-fh-xr.cc:2244:10: error: 'uint' was not declared in this scope; did you mean 'rint'?
2244 | for (uint j = 0; j < it->second.size(); j++)
After chaging it to `uint32_t`, build passes this stage (another issue encountered, but different story).
So I would like to ask whether it is an appropriate correction, or it is just my machine's issue?