Merge pull request #96 from tob2/stdlib_fix

Include stdlib.h for aligned_alloc
This commit is contained in:
Tom Deakin 2021-04-28 11:19:27 +01:00 committed by GitHub
commit e5c9f313cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@
// For full license terms please see the LICENSE file distributed with this
// source code
#include <cstdlib> // For aligned_alloc
#include "OMPStream.h"
#ifndef ALIGNMENT

View File

@ -5,6 +5,7 @@
// For full license terms please see the LICENSE file distributed with this
// source code
#include <cstdlib> // For aligned_alloc
#include <stdexcept>
#include "RAJAStream.hpp"