Преглед изворни кода

Move helper headers into detail directory.

Sam Jaffe пре 5 година
родитељ
комит
cad1ca32db

include/stream/streams/ifd_pointer.hpp → include/stream/streams/detail/ifd_pointer.hpp


include/stream/streams/self_iterating_container.hpp → include/stream/streams/detail/self_iterating_container.hpp


+ 2 - 1
include/stream/streams/join.hpp

@@ -1,8 +1,9 @@
 #pragma once
 
-#include "self_iterating_container.hpp"
 #include <iterator>
 
+#include "detail/self_iterating_container.hpp"
+
 namespace stream { namespace detail {
   template <typename C> class join_iterator {
   public:

+ 1 - 1
include/stream/streams/streams.hpp

@@ -5,7 +5,7 @@
 #include <numeric>
 #include <vector>
 
-#include "ifd_pointer.hpp"
+#include "detail/ifd_pointer.hpp"
 
 namespace stream {
   template <typename T> class iterator {