Documentation fixes

Change-Id: I8359c402819ed475663385b3bd850f0ae209cdf4
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/18421
Reviewed-by: David Neto <dneto@google.com>
This commit is contained in:
dan sinclair 2020-03-31 21:15:40 +00:00 committed by dan sinclair
parent 0534957e78
commit a085c7bbe2
3 changed files with 5 additions and 1 deletions

View File

@ -61,6 +61,7 @@ class Literal {
protected:
/// Constructor
/// @param type the type of the literal
explicit Literal(ast::type::Type* type);
private:

View File

@ -30,6 +30,7 @@ class Context {
/// Resets the state of this context.
void Reset();
/// @returns the Type Manager
TypeManager& type_mgr() { return type_mgr_; }
private:

View File

@ -50,7 +50,9 @@ class Operand {
~Operand();
/// Copy assignment
Operand& operator=(const Operand&) = default;
/// @param b the operand to copy
/// @returns a copy of this operand
Operand& operator=(const Operand& b) = default;
/// Sets the float value
/// @param val the value to set