mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-23 03:33:13 +08:00
fix: Add asserts to ensure NonCopyable and NonMovable n/n
Related-To: NEO-14068 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
aeff5513c3
commit
b60c02d597
@@ -13,7 +13,7 @@
|
||||
namespace NEO {
|
||||
|
||||
template <typename GfxFamily>
|
||||
class UltAubCommandStreamReceiver : public AUBCommandStreamReceiverHw<GfxFamily>, public NonCopyableAndNonMovableClass {
|
||||
class UltAubCommandStreamReceiver : public AUBCommandStreamReceiverHw<GfxFamily> {
|
||||
using BaseClass = AUBCommandStreamReceiverHw<GfxFamily>;
|
||||
|
||||
public:
|
||||
|
||||
@@ -46,7 +46,7 @@ struct WriteMemoryParams {
|
||||
};
|
||||
|
||||
template <typename GfxFamily>
|
||||
class UltCommandStreamReceiver : public CommandStreamReceiverHw<GfxFamily>, public NonCopyableAndNonMovableClass {
|
||||
class UltCommandStreamReceiver : public CommandStreamReceiverHw<GfxFamily> {
|
||||
using BaseClass = CommandStreamReceiverHw<GfxFamily>;
|
||||
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user