Commit d1e43e3a authored by Paul's avatar Paul
Browse files

Formatting

parent 91570d04
...@@ -10,7 +10,8 @@ namespace rtg { ...@@ -10,7 +10,8 @@ namespace rtg {
/** /**
* @brief Arguments passed to instructions * @brief Arguments passed to instructions
* *
* An `argument` can represent a raw buffer of data that either be referenced from another element or it can be owned by the argument. * An `argument` can represent a raw buffer of data that either be referenced from another element
* or it can be owned by the argument.
* *
*/ */
struct argument : raw_data<argument> struct argument : raw_data<argument>
......
...@@ -9,8 +9,9 @@ namespace rtg { ...@@ -9,8 +9,9 @@ namespace rtg {
/** /**
* @brief Provides a base class for common operations with raw buffer * @brief Provides a base class for common operations with raw buffer
* *
* For classes that handle a raw buffer of data, this will provide common operations such as equals, printing, and visitors. * For classes that handle a raw buffer of data, this will provide common operations such as equals,
* To use this class the derived class needs to provide a `data()` method to retrieve a raw pointer to the data, and `get_shape` method that provides the shape of the data. * printing, and visitors. To use this class the derived class needs to provide a `data()` method to
* retrieve a raw pointer to the data, and `get_shape` method that provides the shape of the data.
* *
*/ */
template <class Derived> template <class Derived>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment