Fix include guards for SPV -> SPIRV

Bug: tint:3
Change-Id: I34a7c8e7dd0116968d2614441b3bcb81d7e5c4e7
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/17202
Reviewed-by: dan sinclair <dsinclair@google.com>
This commit is contained in:
David Neto 2020-03-17 20:08:25 +00:00 committed by dan sinclair
parent 4df5d409c4
commit 881cdede29
4 changed files with 12 additions and 12 deletions

View File

@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#ifndef SRC_READER_SPV_FAIL_STREAM_H_ #ifndef SRC_READER_SPIRV_FAIL_STREAM_H_
#define SRC_READER_SPV_FAIL_STREAM_H_ #define SRC_READER_SPIRV_FAIL_STREAM_H_
#include <ostream> #include <ostream>
@ -71,4 +71,4 @@ class FailStream {
} // namespace reader } // namespace reader
} // namespace tint } // namespace tint
#endif // SRC_READER_SPV_FAIL_STREAM_H_ #endif // SRC_READER_SPIRV_FAIL_STREAM_H_

View File

@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#ifndef SRC_READER_SPV_PARSER_H_ #ifndef SRC_READER_SPIRV_PARSER_H_
#define SRC_READER_SPV_PARSER_H_ #define SRC_READER_SPIRV_PARSER_H_
#include <cstdint> #include <cstdint>
#include <memory> #include <memory>
@ -51,4 +51,4 @@ class Parser : public Reader {
} // namespace reader } // namespace reader
} // namespace tint } // namespace tint
#endif // SRC_READER_SPV_PARSER_H_ #endif // SRC_READER_SPIRV_PARSER_H_

View File

@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#ifndef SRC_READER_SPV_PARSER_IMPL_H_ #ifndef SRC_READER_SPIRV_PARSER_IMPL_H_
#define SRC_READER_SPV_PARSER_IMPL_H_ #define SRC_READER_SPIRV_PARSER_IMPL_H_
#include <cstdint> #include <cstdint>
#include <memory> #include <memory>
@ -134,4 +134,4 @@ class ParserImpl : Reader {
} // namespace reader } // namespace reader
} // namespace tint } // namespace tint
#endif // SRC_READER_SPV_PARSER_IMPL_H_ #endif // SRC_READER_SPIRV_PARSER_IMPL_H_

View File

@ -12,8 +12,8 @@
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
#ifndef SRC_READER_SPV_SPIRV_TOOLS_HELPERS_TEST_H_ #ifndef SRC_READER_SPIRV_SPIRV_TOOLS_HELPERS_TEST_H_
#define SRC_READER_SPV_SPIRV_TOOLS_HELPERS_TEST_H_ #define SRC_READER_SPIRV_SPIRV_TOOLS_HELPERS_TEST_H_
#include <cstdint> #include <cstdint>
#include <string> #include <string>
@ -33,4 +33,4 @@ std::vector<uint32_t> Assemble(const std::string& spirv_assembly);
} // namespace reader } // namespace reader
} // namespace tint } // namespace tint
#endif // SRC_READER_SPV_SPIRV_TOOLS_HELPERS_TEST_H_ #endif // SRC_READER_SPIRV_SPIRV_TOOLS_HELPERS_TEST_H_