Skip to content

Commit

Permalink
#94 concerns addressed
Browse files Browse the repository at this point in the history
  • Loading branch information
dimas1185 committed Feb 3, 2023
1 parent c47cb0f commit 226f497
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 @@ -16,7 +16,7 @@
#include <optional>
#include <variant>

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

#include <boost/fusion/algorithm/iteration/for_each.hpp>
#include <boost/fusion/include/for_each.hpp>
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
};

file_type get_file_type(const char* path) {
inline 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 @@ file_type get_file_type(const char* path) {
return file_type::uninitialized;
}

std::string file_type_str(file_type t) {
inline 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 226f497

Please sign in to comment.