| 2 | #include "global.h" |
| 3 | |
| 4 | global::global() |
| 5 | { |
| 6 | const char* filepath = acl_process_path(); |
| 7 | ACL_VSTRING* path = acl_vstring_alloc(256); |
| 8 | acl_sane_dirname(path, filepath); |
| 9 | path_ = acl_vstring_str(path); |
| 10 | acl_vstring_free(path); |
| 11 | } |
| 12 | |
| 13 | global::~global() |
| 14 | { |
nothing calls this directly
no test coverage detected