#ifndef PFOR_PFOR_EXPRESSION_OPERANDTAG_H #define PFOR_PFOR_EXPRESSION_OPERANDTAG_H #include "access.h" namespace pfor { namespace expr { /** * Expression node meta information */ template struct OperandTag { using ID = Id_; static constexpr Access RW = access_; using Index = Index_; }; } } #endif