Closed g3force closed 5 years ago
VarTypes allowed building without QT and that made it into ssl-vision with the initial commit.
In VarTypes, this has been removed in 2010: https://github.com/szi/vartypes/commit/d70feb7e30ee4432354fe42e9a09ae411d984de7
The #ifndef VDATA_NO_QT pollute the code and should thus be removed.
#ifndef VDATA_NO_QT
that's actually quite easy:
find . -name "*.cpp" -exec unifdef -UVDATA_NO_QT {} -o {} \; find . -name "*.h" -exec unifdef -UVDATA_NO_QT {} -o {} \;
VarTypes allowed building without QT and that made it into ssl-vision with the initial commit.
In VarTypes, this has been removed in 2010: https://github.com/szi/vartypes/commit/d70feb7e30ee4432354fe42e9a09ae411d984de7
The
#ifndef VDATA_NO_QT
pollute the code and should thus be removed.