Use C++ standard library includes

This commit is contained in:
Jack Andersen
2017-12-28 21:53:09 -10:00
parent 408ae926d7
commit beee8b3970
2 changed files with 7 additions and 7 deletions

View File

@@ -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>