Skip to content

Commit

Permalink
Whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed Jul 2, 2024
1 parent c941ee3 commit 2af8e9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/bitcoin/system/impl/machine/interpreter.ipp
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ op_dup2() NOEXCEPT
if (state::stack_size() < 2)
return error::op_dup2;

// [0,1,2,3] => 1, [0,1,2,3] => 0,1,[0,1,2,3]
// [0,1,2,3] => 1,[0,1,2,3] => 0,1,[0,1,2,3]
state::push_variant(state::peek_(1));
state::push_variant(state::peek_(1));
return error::op_success;
Expand Down
2 changes: 1 addition & 1 deletion include/bitcoin/system/stream/streams.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ namespace stream
using copy = make_stream<copy_sink<data_slab>>;

/// A fast output stream that copies data to a data_slab.
using fast = system:: ostream<>;
using fast = system::ostream<>;

/// A std::output stream that inserts data to a container.
template <typename Container>
Expand Down

0 comments on commit 2af8e9d

Please sign in to comment.