]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - wtf/AVLTree.h
JavaScriptCore-903.5.tar.gz
[apple/javascriptcore.git] / wtf / AVLTree.h
index d7470e7f956588eacbb6362efc591f4de74baeb6..ec8a63951d34663615b73d988a1c0efbf358adda 100644 (file)
@@ -33,6 +33,7 @@
 #define AVL_TREE_H_
 
 #include "Assertions.h"
+#include <wtf/FixedArray.h>
 
 namespace WTF {
 
@@ -70,7 +71,7 @@ public:
     void reset() { for (unsigned i = 0; i < maxDepth; ++i) m_data[i] = false; }
 
 private:
-    bool m_data[maxDepth];
+    FixedArray<bool, maxDepth> m_data;
 };
 
 // How to determine maxDepth: