Skip to content
Snippets Groups Projects
Commit 2e0513d9 authored by David C. Lonie's avatar David C. Lonie Committed by Code Review
Browse files

Merge topic 'std_string_ostream_passthrough' into master

c49b9c19 Pass std::strings through the OStreamWrapper.
parents 7e515755 c49b9c19
No related branches found
No related tags found
No related merge requests found
......@@ -57,6 +57,7 @@ VTKOSTREAM_OPERATOR(vtkObjectBase&);
VTKOSTREAM_OPERATOR(const vtkLargeInteger&);
VTKOSTREAM_OPERATOR(const vtkSmartPointerBase&);
VTKOSTREAM_OPERATOR(const vtkStdString&);
VTKOSTREAM_OPERATOR(const std::string&);
VTKOSTREAM_OPERATOR(const char*);
VTKOSTREAM_OPERATOR(void*);
VTKOSTREAM_OPERATOR(char);
......
......@@ -65,6 +65,7 @@ public:
vtkOStreamWrapper& operator << (const vtkLargeInteger&);
vtkOStreamWrapper& operator << (const vtkSmartPointerBase&);
vtkOStreamWrapper& operator << (const vtkStdString&);
vtkOStreamWrapper& operator << (const std::string&);
vtkOStreamWrapper& operator << (const char*);
vtkOStreamWrapper& operator << (void*);
vtkOStreamWrapper& operator << (char);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment