summaryrefslogtreecommitdiff
path: root/Kernel/VM/InodeVMObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/VM/InodeVMObject.h')
-rw-r--r--Kernel/VM/InodeVMObject.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Kernel/VM/InodeVMObject.h b/Kernel/VM/InodeVMObject.h
index 5ec9013bac..ca5f0af6e7 100644
--- a/Kernel/VM/InodeVMObject.h
+++ b/Kernel/VM/InodeVMObject.h
@@ -66,4 +66,10 @@ protected:
Bitmap m_dirty_pages;
};
+template<>
+inline bool is<InodeVMObject>(const VMObject& vmobject)
+{
+ return vmobject.is_inode();
+}
+
}