new namespace

master
Daniel Kolesa 2015-04-11 21:00:10 +01:00
parent 962f3ff2ff
commit 323e992ea5
2 changed files with 6 additions and 6 deletions

View File

@ -3,8 +3,8 @@
* This file is part of OctaSTD. See COPYING.txt for futher information.
*/
#ifndef OCTASTD_NEW_H
#define OCTASTD_NEW_H
#ifndef OCTA_NEW_H
#define OCTA_NEW_H
#include <stdlib.h>

View File

@ -3,12 +3,12 @@
* This file is part of OctaSTD. See COPYING.txt for futher information.
*/
#ifndef OCTASTD_VECTOR_H
#define OCTASTD_VECTOR_H
#ifndef OCTA_VECTOR_H
#define OCTA_VECTOR_H
#include <octastd/new.h>
#include <octa/new.h>
namespace octastd {
namespace octa {
template<typename T>
class vector {
T *buf;