11 lines
207 B
C++
11 lines
207 B
C++
|
|
|
|
namespace Kokkos {
|
|
namespace AvoidCompilerWarnings {
|
|
int dontComplain() {
|
|
// keep the compiler from complaining about emptiness
|
|
return 0;
|
|
}
|
|
} // namespace AvoidCompilerWarnings
|
|
} // namespace Kokkos
|