We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ubuntu 18.04, x64 Qt 5.12 g++ -c -pipe -O2 -Wall -W -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -Irelease -isystem /usr/include/libdrm -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -o release/Constellation.o Constellation.cpp Constellation.cpp: In member function ‘void Constellation::drawConstellation()’: Constellation.cpp:127:5: error: ‘assert’ was not declared in this scope assert(this->amount <= size); ^~~~~~ Constellation.cpp:127:5: note: suggested alternative: ‘iszero’ assert(this->amount <= size); ^~~~~~ iszero Constellation.cpp: In member function ‘void Constellation::feed(const complex float*, unsigned int)’: Constellation.cpp:231:3: error: ‘assert’ was not declared in this scope assert(this->ptr < size); ^~~~~~ Constellation.cpp:231:3: note: suggested alternative: ‘iszero’ assert(this->ptr < size); ^~~~~~ iszero Makefile.Release:375: recipe for target 'release/Constellation.o' failed make[1]: *** [release/Constellation.o] Error 1 make[1]: выход из каталога «/home/abc/abc-lab/SigDiggerAll/SuWidgets» Makefile:40: recipe for target 'release' failed make: *** [release] Error 2
The text was updated successfully, but these errors were encountered:
Constellation.cpp:127:5: error: ‘assert’ was not declared in this scope
This was fixed in 5b709d6
Try updating your checkout and try again
Sorry, something went wrong.
Duplicate of #1
Thanks! Really fixed)
BatchDrake
No branches or pull requests
Ubuntu 18.04, x64
Qt 5.12
g++ -c -pipe -O2 -Wall -W -D_REENTRANT -fPIC -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I. -isystem /usr/include/x86_64-linux-gnu/qt5 -isystem /usr/include/x86_64-linux-gnu/qt5/QtWidgets -isystem /usr/include/x86_64-linux-gnu/qt5/QtGui -isystem /usr/include/x86_64-linux-gnu/qt5/QtCore -Irelease -isystem /usr/include/libdrm -I/usr/lib/x86_64-linux-gnu/qt5/mkspecs/linux-g++ -o release/Constellation.o Constellation.cpp
Constellation.cpp: In member function ‘void Constellation::drawConstellation()’:
Constellation.cpp:127:5: error: ‘assert’ was not declared in this scope
assert(this->amount <= size);
^~~~~~
Constellation.cpp:127:5: note: suggested alternative: ‘iszero’
assert(this->amount <= size);
^~~~~~
iszero
Constellation.cpp: In member function ‘void Constellation::feed(const complex float*, unsigned int)’:
Constellation.cpp:231:3: error: ‘assert’ was not declared in this scope
assert(this->ptr < size);
^~~~~~
Constellation.cpp:231:3: note: suggested alternative: ‘iszero’
assert(this->ptr < size);
^~~~~~
iszero
Makefile.Release:375: recipe for target 'release/Constellation.o' failed
make[1]: *** [release/Constellation.o] Error 1
make[1]: выход из каталога «/home/abc/abc-lab/SigDiggerAll/SuWidgets»
Makefile:40: recipe for target 'release' failed
make: *** [release] Error 2
The text was updated successfully, but these errors were encountered: