Merge branch 'cpp-headers'

This commit is contained in:
John Kessenich
2016-08-11 10:00:57 -06:00
28 changed files with 57 additions and 70 deletions

View File

@@ -38,7 +38,7 @@
#include <string>
#include <vector>
#include <stdlib.h>
#include <cstdlib>
namespace spv {
@@ -74,7 +74,7 @@ public:
} // namespace SPV
#if !defined (use_cpp11)
#include <stdio.h>
#include <cstdio>
namespace spv {
class spirvbin_t : public spirvbin_base_t

View File

@@ -38,8 +38,8 @@
// SpvBuilder.h.
//
#include <assert.h>
#include <stdlib.h>
#include <cassert>
#include <cstdlib>
#include <unordered_set>
#include <algorithm>

View File

@@ -36,9 +36,9 @@
// Disassembler for SPIR-V.
//
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <cstdlib>
#include <cstring>
#include <cassert>
#include <iomanip>
#include <stack>
#include <sstream>

View File

@@ -33,7 +33,7 @@
//POSSIBILITY OF SUCH DAMAGE.
//
// 1) Programatically fill in instruction/operand information.
// 1) Programmatically fill in instruction/operand information.
// This can be used for disassembly, printing documentation, etc.
//
// 2) Print documentation from this parameterization.
@@ -41,8 +41,8 @@
#include "doc.h"
#include <stdio.h>
#include <string.h>
#include <cstdio>
#include <cstring>
#include <algorithm>
#ifdef AMD_EXTENSIONS