Skip to content

Commit

Permalink
Revert "#94 concerns addressed"
Browse files Browse the repository at this point in the history
This reverts commit 226f497.
  • Loading branch information
dimas1185 committed Sep 21, 2023
1 parent 7e2efda commit 2c8868e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libraries/eosiolib/core/eosio/datastream.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#include <optional>
#include <variant>

#include <cstring>
#include <string.h>

namespace eosio {

Expand Down
4 changes: 2 additions & 2 deletions tools/antler-run/file-utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ enum class file_type {
wasm
};

inline file_type get_file_type(const char* path) {
file_type get_file_type(const char* path) {
std::fstream file;
file.open(path, std::fstream::in | std::fstream::binary);
assert(file.is_open());
Expand Down Expand Up @@ -55,7 +55,7 @@ inline file_type get_file_type(const char* path) {
return file_type::uninitialized;
}

inline std::string file_type_str(file_type t) {
std::string file_type_str(file_type t) {
switch (t) {
case file_type::non_elf_other:
return "non elf";
Expand Down

0 comments on commit 2c8868e

Please sign in to comment.