Skip to content

Commit

Permalink
Re #1 minor changes nesessary to compile Horace under Unix
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Apr 10, 2019
1 parent b7d1113 commit 30cd515
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions _LowLevelCode/cpp/combine_sqw/sqw_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,4 @@ class sqw_reader

};


#endif

#endif
4 changes: 2 additions & 2 deletions _LowLevelCode/cpp/hdf_mex_reader/input_parser.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <mex.h>
#include <string>
#include <cstring>
#include <sstream>
#include <typeinfo>
#include "pix_block_processor.h"
Expand Down Expand Up @@ -87,7 +87,7 @@ template<class T> class class_handle
_signature = 0;
delete class_ptr;
}
bool isValid() { return ((_signature == CLASS_HANDLE_SIGNATURE) && strcmp(_name.c_str(), typeid(T).name()) == 0); }
bool isValid() { return ((_signature == CLASS_HANDLE_SIGNATURE) && std::strcmp(_name.c_str(), typeid(T).name()) == 0); }

size_t n_first_block;
size_t pos_in_first_block;
Expand Down

0 comments on commit 30cd515

Please sign in to comment.