forked from OSchip/llvm-project
Added missing include to AMDHSAKernelDescriptor.h
We use size_t in this header, so we also need to include cstddef to make it compile. Fixes the module builds. llvm-svn: 334555
This commit is contained in:
parent
6b9359509c
commit
7d1d180eaf
|
@ -16,6 +16,7 @@
|
|||
#ifndef LLVM_SUPPORT_AMDHSAKERNELDESCRIPTOR_H
|
||||
#define LLVM_SUPPORT_AMDHSAKERNELDESCRIPTOR_H
|
||||
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
|
||||
// Gets offset of specified member in specified type.
|
||||
|
|
Loading…
Reference in New Issue