Skip to content

Commit

Permalink
Re #3 reverted horace_init static changes and
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Apr 8, 2019
1 parent 66fcbe1 commit 06db9e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions _LowLevelCode/cpp/hdf_mex_reader/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/.vs
5 changes: 3 additions & 2 deletions horace_init.m
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
if isempty(which('herbert_init'))
error('Ensure Herbert is installed and initialised to run Horace. (Libisis is no longer supported)')
end
warning('off','MATLAB:subscripting:noSubscriptsSpecified');
% -----------------------------------------------------------------------------
% Root directory is assumed to be that in which this function resides
rootpath = fileparts(which('horace_init'));
Expand Down Expand Up @@ -93,10 +94,10 @@
disp('! Mex code: Disabled or not supported on this platform !')
else
if mexMinVer==mexMaxVer
mess=sprintf('! Mex files : $Revision:: 1750 ($Date:: 2019-04-08 17:55:21 +0100 (Mon, 8 Apr 2019) $) !',mexMaxVer,date(1:28));
mess=sprintf('! Mex files : $Revision::%4d $ (%s$) !',mexMaxVer,date(1:28));
else
mess=sprintf(...
'! Mex files :$Revision:: 1750 ($Date:: 2019-04-08 17:55:21 +0100 (Mon, 8 Apr 2019) $)!',mexMinVer,mexMaxVer,date(1:28));
'! Mex files :$Revisions::%4d-%3d(%s$)!',mexMinVer,mexMaxVer,date(1:28));
end
disp(mess)

Expand Down

0 comments on commit 06db9e0

Please sign in to comment.