зеркало из https://github.com/mozilla/gecko-dev.git
29 строки
690 B
Diff
29 строки
690 B
Diff
diff --git a/modules/woff2/src/woff2_dec.cc b/modules/woff2/src/woff2_dec.cc
|
|
--- a/modules/woff2/src/woff2_dec.cc
|
|
+++ b/modules/woff2/src/woff2_dec.cc
|
|
@@ -20,16 +20,24 @@
|
|
#include <algorithm>
|
|
#include <complex>
|
|
#include <cstring>
|
|
#include <limits>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
#include <memory>
|
|
+#include "mozilla/UniquePtr.h"
|
|
+namespace std
|
|
+{
|
|
+ using mozilla::DefaultDelete;
|
|
+ using mozilla::UniquePtr;
|
|
+ #define default_delete DefaultDelete
|
|
+ #define unique_ptr UniquePtr
|
|
+}
|
|
|
|
#include "./decode.h"
|
|
#include "./buffer.h"
|
|
#include "./port.h"
|
|
#include "./round.h"
|
|
#include "./store_bytes.h"
|
|
#include "./table_tags.h"
|
|
#include "./variable_length.h"
|