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

@ -9,7 +9,7 @@ static_assert( __cplusplus > 2020'99 );
#include <string>
#include <streambuf>
#include <Alepha/Utility/StackableStreambuf.h>
#include <Alepha/IOStreams/StackableStreambuf.h>
namespace Alepha::Hydrogen ::detail:: word_wrap_m
{
@ -25,9 +25,9 @@ namespace Alepha::Hydrogen ::detail:: word_wrap_m
explicit StartWrap_params( const std::size_t width, const std::size_t nextLineOffset= 0 ) : width( width ), nextLineOffset( nextLineOffset ) {}
};
using StartWrap= Utility::PushStack< StartWrap_params >;
using StartWrap= IOStreams::PushStack< StartWrap_params >;
constexpr Utility::PopStack EndWrap;
constexpr IOStreams::PopStack EndWrap;
}
inline namespace impl