Compile tips and tricks

From HPCWIKI
Jump to navigation Jump to search

GSL-config not found

sudo apt install libgsl-dev[1]

Cannot convert 'std::ifstream' {aka 'std::basic_ifstream<char>'} to 'bool' in return

Instead return if the stream is good():[2]

return ifile.good();

References