Skip to content

Commit

Permalink
fix post
Browse files Browse the repository at this point in the history
  • Loading branch information
lwinkler committed Oct 7, 2022
1 parent 6358477 commit e2a95ca
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions com/connection.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ class connection {
if (!header_stream || header_stream.str().size() != header_length) {
// Something went wrong, inform the caller.
boost::system::error_code error(boost::asio::error::invalid_argument);
assert(false);
// TODO LW: socket_.get_executor().post(boost::bind(_handler, error));
boost::asio::post(boost::bind(_handler, error));
return;
}
outbound_header_ = header_stream.str();
Expand Down
1 change: 0 additions & 1 deletion parser/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import clang.cindex as cindex
from subprocess import call
from pprint import pprint
from pathlib import Path

so_path = "POPLITE_CLANG_SO"
if not so_path in os.environ:
Expand Down

0 comments on commit e2a95ca

Please sign in to comment.