Skip to content
Snippets Groups Projects
Commit b376526c authored by Aaron Cuevas Lopez's avatar Aaron Cuevas Lopez
Browse files

Fix NWB compilation issues on Linux

parent c4db1eee
No related branches found
No related tags found
No related merge requests found
...@@ -306,7 +306,7 @@ int NWBFile::createFileStructure() ...@@ -306,7 +306,7 @@ int NWBFile::createFileStructure()
return filename; return filename;
} }
HDF5RecordingData* NWBFile::createRecordingStructures(String basePath, NWBRecordingInfo& info, String helpText, int chunk_size, String ancestry) HDF5RecordingData* NWBFile::createRecordingStructures(String basePath, const NWBRecordingInfo& info, String helpText, int chunk_size, String ancestry)
{ {
StringArray ancestryStrings; StringArray ancestryStrings;
ancestryStrings.add("TimeSeries"); ancestryStrings.add("TimeSeries");
...@@ -339,4 +339,4 @@ int NWBFile::createFileStructure() ...@@ -339,4 +339,4 @@ int NWBFile::createFileStructure()
dSet = createDataSet(STR, 1, 0, path + "/" + name); dSet = createDataSet(STR, 1, 0, path + "/" + name);
if (!dSet) return; if (!dSet) return;
dSet->writeDataBlock(1, STR, text.toUTF8()); dSet->writeDataBlock(1, STR, text.toUTF8());
} }
\ No newline at end of file
...@@ -61,7 +61,7 @@ namespace NWBRecording ...@@ -61,7 +61,7 @@ namespace NWBRecording
int createFileStructure() override; int createFileStructure() override;
private: private:
HDF5RecordingData* createRecordingStructures(String basePath, NWBRecordingInfo& info, String helpText, int chunk_size, String ancestry); HDF5RecordingData* createRecordingStructures(String basePath, const NWBRecordingInfo& info, String helpText, int chunk_size, String ancestry);
void createTextDataSet(String path, String name, String text); void createTextDataSet(String path, String name, String text);
const String filename; const String filename;
...@@ -100,4 +100,4 @@ namespace NWBRecording ...@@ -100,4 +100,4 @@ namespace NWBRecording
} }
#endif #endif
\ No newline at end of file
...@@ -33,7 +33,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. ...@@ -33,7 +33,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
using namespace Plugin; using namespace Plugin;
#define NUM_PLUGINS 2 #define NUM_PLUGINS 1
extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info) extern "C" EXPORT void getLibInfo(Plugin::LibraryInfo* info)
{ {
...@@ -67,4 +67,4 @@ BOOL WINAPI DllMain(IN HINSTANCE hDllHandle, ...@@ -67,4 +67,4 @@ BOOL WINAPI DllMain(IN HINSTANCE hDllHandle,
return TRUE; return TRUE;
} }
#endif #endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment