1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-08-02 20:57:06 +01:00

Protect vs. missing LIME libarary

This commit is contained in:
Peter Boyle
2024-06-11 11:08:00 -04:00
parent 07a07b6fa3
commit 284fc05f15
2 changed files with 4 additions and 0 deletions

View File

@@ -30,11 +30,13 @@ directory
#include <string>
template <class T> void readFile(T& out, std::string const fname){
#ifdef HAVE_LIME
Grid::emptyUserRecord record;
Grid::ScidacReader RD;
RD.open(fname);
RD.readScidacFieldRecord(out,record);
RD.close();
#endif
}