summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/rendering/TableLayout.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/rendering/TableLayout.h')
-rw-r--r--Source/WebCore/rendering/TableLayout.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/WebCore/rendering/TableLayout.h b/Source/WebCore/rendering/TableLayout.h
index e0fa8ee..c5f61f6 100644
--- a/Source/WebCore/rendering/TableLayout.h
+++ b/Source/WebCore/rendering/TableLayout.h
@@ -21,13 +21,15 @@
#ifndef TableLayout_h
#define TableLayout_h
+#include <wtf/FastAllocBase.h>
#include <wtf/Noncopyable.h>
namespace WebCore {
class RenderTable;
-class TableLayout : public Noncopyable {
+class TableLayout {
+ WTF_MAKE_NONCOPYABLE(TableLayout); WTF_MAKE_FAST_ALLOCATED;
public:
TableLayout(RenderTable* table)
: m_table(table)