Skip to content

Commit 96aec5d

Browse files
committed
Clang fix
1 parent d86fde6 commit 96aec5d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Core/Matlab/fieldtomatlab.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,21 +78,21 @@ namespace SCIRun
7878
//////// OPTIONS FOR CONVERTER ////////////////////////
7979

8080
// Set the index base for the Matlab code, normally this one is 1
81-
inline void option_indexbase(int indexbase);
81+
void option_indexbase(int indexbase);
8282
// Option to switch on the old way of dealing with tensors, the ordering
8383
// is different. When switched off, ordering will be same as SCIRun
8484
// ordering.
85-
inline void option_oldtensor(bool value);
85+
void option_oldtensor(bool value);
8686
// When isoparametric the connectivity matrix of mesh and field should
8787
// be the same hence one can specify to remove it if not wanted
88-
inline void option_nofieldconnectivity(bool value);
88+
void option_nofieldconnectivity(bool value);
8989
// Force old naming scheme when exporting, this will not work for H.O.
9090
// elements.
91-
inline void option_forceoldnames(bool value);
91+
void option_forceoldnames(bool value);
9292

9393
virtual bool execute(SCIRun::FieldHandle fieldH, matlabarray& mlarray);
9494

95-
inline void setreporter(SCIRun::Core::Logging::LoggerHandle pr);
95+
void setreporter(SCIRun::Core::Logging::LoggerHandle pr);
9696

9797
protected:
9898

0 commit comments

Comments
 (0)