Lots more work on eng::malloc
This commit is contained in:
@@ -10,7 +10,7 @@ with open(f"wrap-{dash}.hpp", "w") as f:
|
||||
print(f"#ifndef WRAP_{ubase}_HPP", file=f)
|
||||
print(f"#define WRAP_{ubase}_HPP", file=f)
|
||||
print("", file=f)
|
||||
print('#include "two-mallocs.hpp"', file=f)
|
||||
print('#include "eng-malloc.hpp"', file=f)
|
||||
print(f"#include <{base}>", file=f)
|
||||
print("", file=f)
|
||||
print("namespace eng {", file=f)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef WRAP_DEQUE_HPP
|
||||
#define WRAP_DEQUE_HPP
|
||||
|
||||
#include "two-mallocs.hpp"
|
||||
#include "eng-malloc.hpp"
|
||||
#include <deque>
|
||||
|
||||
namespace eng {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef WRAP_MAP_HPP
|
||||
#define WRAP_MAP_HPP
|
||||
|
||||
#include "two-mallocs.hpp"
|
||||
#include "eng-malloc.hpp"
|
||||
#include <map>
|
||||
|
||||
namespace eng {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef WRAP_SET_HPP
|
||||
#define WRAP_SET_HPP
|
||||
|
||||
#include "two-mallocs.hpp"
|
||||
#include "eng-malloc.hpp"
|
||||
#include <set>
|
||||
|
||||
namespace eng {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef WRAP_SSTREAM_HPP
|
||||
#define WRAP_SSTREAM_HPP
|
||||
|
||||
#include "two-mallocs.hpp"
|
||||
#include "eng-malloc.hpp"
|
||||
#include <sstream>
|
||||
|
||||
namespace eng {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef WRAP_STRING_HPP
|
||||
#define WRAP_STRING_HPP
|
||||
|
||||
#include "two-mallocs.hpp"
|
||||
#include "eng-malloc.hpp"
|
||||
#include <string>
|
||||
|
||||
namespace eng {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef WRAP_UNORDERED_MAP_HPP
|
||||
#define WRAP_UNORDERED_MAP_HPP
|
||||
|
||||
#include "two-mallocs.hpp"
|
||||
#include "eng-malloc.hpp"
|
||||
#include <unordered_map>
|
||||
|
||||
namespace eng {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef WRAP_UNORDERED_SET_HPP
|
||||
#define WRAP_UNORDERED_SET_HPP
|
||||
|
||||
#include "two-mallocs.hpp"
|
||||
#include "eng-malloc.hpp"
|
||||
#include <unordered_set>
|
||||
|
||||
namespace eng {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef WRAP_VECTOR_HPP
|
||||
#define WRAP_VECTOR_HPP
|
||||
|
||||
#include "two-mallocs.hpp"
|
||||
#include "eng-malloc.hpp"
|
||||
#include <vector>
|
||||
|
||||
namespace eng {
|
||||
|
||||
Reference in New Issue
Block a user