mirror of https://github.com/AxioDL/logvisor.git
Use C++ standard library includes
This commit is contained in:
parent
408ae926d7
commit
beee8b3970
|
@ -1,10 +1,10 @@
|
|||
#ifndef __LOG_VISOR_HPP__
|
||||
#define __LOG_VISOR_HPP__
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <cstdarg>
|
||||
#include <cstring>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <vector>
|
||||
#include <atomic>
|
||||
#include <memory>
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include <unistd.h>
|
||||
#include <dlfcn.h>
|
||||
#include <cxxabi.h>
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
#endif
|
||||
|
||||
#include <fcntl.h>
|
||||
|
@ -21,8 +21,8 @@
|
|||
#include <thread>
|
||||
#include <string>
|
||||
#include <unordered_map>
|
||||
#include <stdio.h>
|
||||
#include <inttypes.h>
|
||||
#include <cstdio>
|
||||
#include <cinttypes>
|
||||
#include <signal.h>
|
||||
#include "logvisor/logvisor.hpp"
|
||||
|
||||
|
|
Loading…
Reference in New Issue