move include/ranges/xpr -> include/xpr

This commit is contained in:
Christian Zimmermann 2022-10-21 13:32:27 +02:00
parent 98f71b874b
commit db623649ee
21 changed files with 12 additions and 12 deletions

View file

@ -81,38 +81,38 @@ namespace CNORXZ
template <typename T> template <typename T>
class Allocator; class Allocator;
// definition: ranges/xpr/vpos_type.h // definition: xpr/vpos_type.h
class VPosBase; class VPosBase;
// definition: ranges/xpr/vpos_type.h // definition: xpr/vpos_type.h
template <class PosT> template <class PosT>
class VPos; class VPos;
// definition: ranges/xpr/vpos_type.h // definition: xpr/vpos_type.h
template <class PosT> template <class PosT>
class VPosRef; class VPosRef;
// definition: ranges/xpr/pos_type.h // definition: xpr/pos_type.h
class UPos; class UPos;
// definition: ranges/xpr/pos_type.h // definition: xpr/pos_type.h
template <SizeT N> template <SizeT N>
class SPos; class SPos;
// definition: ranges/xpr/pos_type.h // definition: xpr/pos_type.h
class FPos; class FPos;
// definition: ranges/xpr/pos_type.h // definition: xpr/pos_type.h
template <SizeT N, SizeT... Ms> template <SizeT N, SizeT... Ms>
class SFPos; class SFPos;
// definition: ranges/xpr/pos_type.h // definition: xpr/pos_type.h
class DPos; class DPos;
// definition: ranges/xpr/pos_type.h // definition: xpr/pos_type.h
class DPosRef; class DPosRef;
// definition: ranges/xpr/pos_type.h // definition: xpr/pos_type.h
template <class PosT1, class PosT2> template <class PosT1, class PosT2>
class MPos; class MPos;

View file

@ -2,7 +2,7 @@
#include "cxz_operation.h" #include "cxz_operation.h"
#include "xpr/pos_type.h" #include "xpr/pos_type.h"
#include "ranges/range_helper.h" #include "ranges/range_helper.h"
#include "ranges/xpr/op_xpr.h" #include "xpr/op_xpr.h"
namespace CNORXZ namespace CNORXZ

View file

@ -1,7 +1,7 @@
#include "gtest/gtest.h" #include "gtest/gtest.h"
#include "ranges/xpr/xpr.h" #include "xpr/xpr.h"
namespace namespace
{ {