diff options
author | dan sinclair <dj2@everburning.com> | 2018-07-07 09:38:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-07 09:38:00 -0400 |
commit | 3dad1cda1168b56e5326305b395c25afa06feff2 (patch) | |
tree | 5b51a44170f0a4a1992de292ed5afea9b4bb4a3b /source/parsed_operand.h | |
parent | 76e0bde19633fc8c45f7de52029e3d517b2e1561 (diff) |
Change libspirv to spvtools namespace (#1678)
This CL changes all of the libspirv namespace code to spvtools to match
the rest of the code base.
Diffstat (limited to 'source/parsed_operand.h')
-rw-r--r-- | source/parsed_operand.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/parsed_operand.h b/source/parsed_operand.h index 8c2fd85c..b5697bb3 100644 --- a/source/parsed_operand.h +++ b/source/parsed_operand.h @@ -18,7 +18,7 @@ #include <ostream> #include "spirv-tools/libspirv.h" -namespace libspirv { +namespace spvtools { // Emits the numeric literal representation of the given instruction operand // to the stream. The operand must be of numeric type. If integral it may @@ -27,6 +27,6 @@ namespace libspirv { void EmitNumericLiteral(std::ostream* out, const spv_parsed_instruction_t& inst, const spv_parsed_operand_t& operand); -} // namespace libspirv +} // namespace spvtools #endif // LIBSPIRV_BINARY_H_ |