Skip to content

Commit

Permalink
[🐭]🐭🐭🐭🐭🐭🐭
Browse files Browse the repository at this point in the history
  • Loading branch information
MrsRina committed Aug 21, 2023
1 parent b4a363d commit 572dd19
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions include/ekg/util/io.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,12 @@ namespace ekg {
this->buffer << '\n';
std::string logmsg {this->buffer.str()};

#if defined(__ANDROID__)
#if defined(__ANDROID__)
__android_log_print(ANDROID_LOG_VERBOSE, "EKG", "%s", logmsg.c_str());
#else
#else
std::cout << logmsg;
#endif
#endif

ekg::log::cache += logmsg;
}

Expand All @@ -91,6 +92,7 @@ namespace ekg {
bool file_to_string(std::string &file_content, std::string_view path);

struct timing {
public:
uint64_t elapsed_ticks {};
uint64_t current_ticks {};
uint64_t ticks_going_on {};
Expand All @@ -109,6 +111,12 @@ namespace ekg {
bool absolute {};
};

struct value {
protected:
void *p_value {};
public:
};

namespace bitwise {
bool contains(uint16_t flags, uint16_t target);
uint16_t &add(uint16_t &flags, uint16_t target);
Expand Down
Binary file modified lib/win32/libekg.a
Binary file not shown.
Binary file modified test/build/win32/ekg-tests.exe
Binary file not shown.

0 comments on commit 572dd19

Please sign in to comment.