Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Christian Butz
VTK
Commits
1cd1f80f
Commit
1cd1f80f
authored
Nov 01, 2017
by
Sean McBride
Browse files
Removed a few of the remaining illegal names containing double underscores
parent
37e24f73
Changes
8
Hide whitespace changes
Inline
Side-by-side
CMake/pythonmodules.h.in
View file @
1cd1f80f
...
...
@@ -13,8 +13,8 @@
=========================================================================*/
// *********** FILE GENERATED BY CMAKE. DO NOT EDIT ****************
#ifndef
__
@_nameUpper@_h
#define
__
@_nameUpper@_h
#ifndef @_nameUpper@_h
#define @_nameUpper@_h
#include <Python.h>
...
...
CMake/vtkMakeInstantiator.h.in
View file @
1cd1f80f
#ifndef
__
@VTK_MAKE_INSTANTIATOR_CLASS_NAME@_h
#define
__
@VTK_MAKE_INSTANTIATOR_CLASS_NAME@_h
#ifndef @VTK_MAKE_INSTANTIATOR_CLASS_NAME@_h
#define @VTK_MAKE_INSTANTIATOR_CLASS_NAME@_h
#include "vtkInstantiator.h"
...
...
CMake/vtkObjectFactory.h.in
View file @
1cd1f80f
...
...
@@ -13,8 +13,8 @@
=========================================================================*/
#ifndef
__
@vtk-module@ObjectFactory_h
#define
__
@vtk-module@ObjectFactory_h
#ifndef @vtk-module@ObjectFactory_h
#define @vtk-module@ObjectFactory_h
#include "@vtk-module@Module.h" // For export macro
#include "vtkObjectFactory.h"
...
...
@@ -39,4 +39,4 @@ private:
void operator=(const @vtk-module@ObjectFactory&) = delete;
};
#endif //
__
@vtk-module@ObjectFactory_h
#endif // @vtk-module@ObjectFactory_h
Common/Core/vtkOStrStreamWrapper.h
View file @
1cd1f80f
...
...
@@ -27,8 +27,8 @@
#ifndef vtkOStrStreamWrapper_h
#define vtkOStrStreamWrapper_h
#ifndef
__
VTK_SYSTEM_INCLUDES_
_
INSIDE
Do_not_include_vtkOStrStreamWrapper_directly_
_
vtkSystemIncludes_includes_it
;
#ifndef VTK_SYSTEM_INCLUDES_INSIDE
Do_not_include_vtkOStrStreamWrapper_directly_vtkSystemIncludes_includes_it
;
#endif
class
VTKCOMMONCORE_EXPORT
vtkOStrStreamWrapper
:
public
vtkOStreamWrapper
...
...
Common/Core/vtkOStreamWrapper.h
View file @
1cd1f80f
...
...
@@ -29,8 +29,8 @@
#include
"vtkCommonCoreModule.h"
#ifndef
__
VTK_SYSTEM_INCLUDES_
_
INSIDE
Do_not_include_vtkOStreamWrapper_directly_
_
vtkSystemIncludes_includes_it
;
#ifndef VTK_SYSTEM_INCLUDES_INSIDE
Do_not_include_vtkOStreamWrapper_directly_vtkSystemIncludes_includes_it
;
#endif
class
vtkIndent
;
...
...
Common/Core/vtkSystemIncludes.h
View file @
1cd1f80f
...
...
@@ -25,9 +25,9 @@
#define vtkSystemIncludes_h
/* first include the local configuration for this machine */
#define
__
VTK_SYSTEM_INCLUDES_
_
INSIDE
#define VTK_SYSTEM_INCLUDES_INSIDE
#include
"vtkWin32Header.h"
#undef
__
VTK_SYSTEM_INCLUDES_
_
INSIDE
#undef VTK_SYSTEM_INCLUDES_INSIDE
// The language wrapper files do not need the real streams. They
// define VTK_STREAMS_FWD_ONLY so that the streams are only
...
...
@@ -48,10 +48,10 @@
// this should be removed at some point
#define VTK_USE_EXECUTIVES
#define
__
VTK_SYSTEM_INCLUDES_
_
INSIDE
#define VTK_SYSTEM_INCLUDES_INSIDE
#include
"vtkOStreamWrapper.h"
// Include the ostream wrapper.
#include
"vtkOStrStreamWrapper.h"
// Include the ostrstream wrapper.
#undef
__
VTK_SYSTEM_INCLUDES_
_
INSIDE
#undef VTK_SYSTEM_INCLUDES_INSIDE
// Include generic stuff.
#include
<stdio.h>
...
...
Common/Core/vtkWin32Header.h
View file @
1cd1f80f
...
...
@@ -23,8 +23,8 @@
#ifndef vtkWin32Header_h
#define vtkWin32Header_h
#ifndef
__
VTK_SYSTEM_INCLUDES_
_
INSIDE
Do_not_include_vtkWin32Header_directly_
_
vtkSystemIncludes_includes_it
;
#ifndef VTK_SYSTEM_INCLUDES_INSIDE
Do_not_include_vtkWin32Header_directly_vtkSystemIncludes_includes_it
;
#endif
#include
"vtkConfigure.h"
...
...
Utilities/EncodeString/vtkEncodeString.cxx
View file @
1cd1f80f
...
...
@@ -205,8 +205,8 @@ int main(int argc,
<<
" * Declare the "
<<
argv
[
3
]
<<
" string."
<<
endl
<<
" *"
<<
endl
<<
" */"
<<
endl
<<
"#ifndef
__
"
<<
fileName
<<
"_h"
<<
endl
<<
"#define
__
"
<<
fileName
<<
"_h"
<<
endl
<<
"#ifndef "
<<
fileName
<<
"_h"
<<
endl
<<
"#define "
<<
fileName
<<
"_h"
<<
endl
<<
endl
;
if
(
argc
>
5
)
{
...
...
@@ -236,7 +236,7 @@ int main(int argc,
<<
endl
;
}
hs
.
Stream
<<
"#endif /* #ifndef
__
"
<<
fileName
<<
"_h */"
<<
endl
;
hs
.
Stream
<<
"#endif /* #ifndef "
<<
fileName
<<
"_h */"
<<
endl
;
std
::
string
headerOutput
=
GetFilenameWithoutExtension
(
output
)
+
".h"
;
...
...
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