Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/Common/AlignedBuffer.h')
-rwxr-xr-xCPP/Common/AlignedBuffer.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/CPP/Common/AlignedBuffer.h b/CPP/Common/AlignedBuffer.h
deleted file mode 100755
index d040463e..00000000
--- a/CPP/Common/AlignedBuffer.h
+++ /dev/null
@@ -1,18 +0,0 @@
-// Common/AlignedBuffer.h
-
-#ifndef __COMMON_ALIGNEDBUFFER_H
-#define __COMMON_ALIGNEDBUFFER_H
-
-#include <stddef.h>
-
-class CAlignedBuffer
-{
- unsigned char *m_Buffer;
-public:
- CAlignedBuffer(): m_Buffer(0) {};
- ~CAlignedBuffer() { Free(); }
- void *Allocate(size_t size, size_t mask);
- void Free();
-};
-
-#endif