pfor/src/pfor/expression/optraits.h

20 lines
293 B
C++

#ifndef PFOR_PFOR_EXPRESSION_OPTRAITS_H
#define PFOR_PFOR_EXPRESSION_OPTRAITS_H
#include <cstdint>
#include "access.h"
namespace pfor {
namespace expr {
template<typename Op, typename T, std::size_t>
struct OperationTraits {
static constexpr Access access = Access::read;
};
}
}
#endif