Files
moonlight-qt/app/utils.h
T

6 lines
99 B
C++

#pragma once
#define THROW_BAD_ALLOC_IF_NULL(x) \
if ((x) == nullptr) throw std::bad_alloc()