18 lines
471 B
C++
18 lines
471 B
C++
|
|
/*************************************************************************
|
||
|
|
* Copyright (c) 2019 Advanced Micro Devices, Inc. All rights reserved.
|
||
|
|
*
|
||
|
|
* See LICENSE.txt for license information
|
||
|
|
************************************************************************/
|
||
|
|
|
||
|
|
#ifndef TEST_COMBINEDCALLS_HPP
|
||
|
|
#define TEST_COMBINEDCALLS_HPP
|
||
|
|
|
||
|
|
#include "CorrectnessTest.hpp"
|
||
|
|
|
||
|
|
namespace CorrectnessTests
|
||
|
|
{
|
||
|
|
class CombinedCallsCorrectnessTest : public CorrectnessTest {};
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|