Browse Source

Fix some errors in header files.

Sam Jaffe 6 years ago
parent
commit
9a416eed2d
2 changed files with 2 additions and 2 deletions
  1. 2 0
      include/stream/stream.hpp
  2. 0 2
      include/stream/streams/streams.hpp

+ 2 - 0
include/stream/stream.hpp

@@ -7,6 +7,8 @@
  *
  */
 
+#pragma once
+
 #include <algorithm>
 #include <utility>
 #include <functional>

+ 0 - 2
include/stream/streams/streams.hpp

@@ -17,8 +17,6 @@
     return *this; \
   }
 
-std::map<void*, bool> data;
-
 namespace stream {
 #define STREAM_ITERATOR_COPY() \
   copy(other.copy), dereference(other.dereference), compare(other.compare), destroy(other.destroy), advance(other.advance), type_(other.type_)