1
0
forked from Alepha/Alepha

Relocate StackableStreambuf to IOStreams.

This commit is contained in:
2023-11-10 13:30:08 -05:00
parent 6d8e503562
commit db70cb3b08
10 changed files with 17 additions and 16 deletions

View File

@ -18,7 +18,7 @@ static_assert( __cplusplus > 2020'99 );
#include <Alepha/Concepts.h>
#include <Alepha/Utility/StackableStreambuf.h>
#include <Alepha/IOStreams/StackableStreambuf.h>
namespace Alepha::Hydrogen ::detail:: string_algorithms
{
@ -51,11 +51,11 @@ namespace Alepha::Hydrogen ::detail:: string_algorithms
{}
};
using StartSubstitutions= Utility::PushStack< StartSubstitutions_params >;
using StartSubstitutions= IOStreams::PushStack< StartSubstitutions_params >;
// Note that these function as a stack -- so `EndSubstitutions` will
// terminate the top of that stack.
constexpr Utility::PopStack EndSubstitutions;
constexpr IOStreams::PopStack EndSubstitutions;
inline namespace impl
{