Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
mantidproject
mantid
Commits
44f9d07b
Commit
44f9d07b
authored
Aug 04, 2016
by
Ian Bush
Browse files
Refs #17065 Fixed unused variable warning, formatting
parent
31e7ed11
Changes
4
Hide whitespace changes
Inline
Side-by-side
Framework/DataHandling/CMakeLists.txt
View file @
44f9d07b
...
...
@@ -226,9 +226,9 @@ set ( INC_FILES
inc/MantidDataHandling/LoadGSS.h
inc/MantidDataHandling/LoadHelper.h
inc/MantidDataHandling/LoadIDFFromNexus.h
inc/MantidDataHandling/LoadILL.h
inc/MantidDataHandling/LoadILLIndirect.h
inc/MantidDataHandling/LoadILLINX.h
inc/MantidDataHandling/LoadILL.h
inc/MantidDataHandling/LoadILLIndirect.h
inc/MantidDataHandling/LoadILLINX.h
inc/MantidDataHandling/LoadILLReflectometry.h
inc/MantidDataHandling/LoadILLSANS.h
inc/MantidDataHandling/LoadISISNexus2.h
...
...
Framework/DataHandling/inc/MantidDataHandling/LoadILL.h
View file @
44f9d07b
...
...
@@ -46,4 +46,4 @@ public:
}
// namespace DataHandling
}
// namespace Mantid
#endif /
/
MANTID_
LOAD
ILL_H
#endif
/
*
MANTID_
DATAHANDLING_Load
ILL_H
_*/
Framework/DataHandling/inc/MantidDataHandling/LoadILLINX.h
View file @
44f9d07b
...
...
@@ -111,4 +111,4 @@ private:
}
// namespace DataHandling
}
// namespace Mantid
#endif
/*MANTID_DATAHANDLING_LoadILL_H_*/
#endif
/*MANTID_DATAHANDLING_LoadILL
INX
_H_*/
Framework/DataHandling/src/LoadILL.cpp
View file @
44f9d07b
...
...
@@ -3,7 +3,6 @@
//---------------------------------------------------
#include
"MantidDataHandling/LoadILL.h"
#include
"MantidAPI/RegisterFileLoader.h"
#include
"MantidNexus/NexusClasses.h"
namespace
Mantid
{
namespace
DataHandling
{
...
...
@@ -20,6 +19,8 @@ LoadILL::LoadILL() : LoadILLINX() { this->useAlgorithm("LoadILLINX", 1); }
* be used
*/
int
LoadILL
::
confidence
(
Kernel
::
NexusDescriptor
&
descriptor
)
const
{
// Suppress unused warning
(
void
)
descriptor
;
// Deprecated, always return 0
return
0
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment