Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
WrathfulSpatula committed Nov 3, 2024
1 parent ee5eb69 commit dd7926a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/qengine_cpu.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class QEngineCPU : public QEngine {
DispatchQueue dispatchQueue;
#endif

using QEngine::Copy;
void Copy(QInterfacePtr orig) { Copy(std::dynamic_pointer_cast<QEngineCPU>(orig)); }
void Copy(QEngineCPUPtr orig)
{
Expand Down
1 change: 1 addition & 0 deletions include/qengine_cuda.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ class QEngineCUDA : public QEngine {
throw std::runtime_error(message + ", error code: " + std::to_string(error));
}

using QEngine::Copy;
void Copy(QInterfacePtr orig) {Copy(std::dynamic_pointer_cast<QEngineOCL>(orig); }
void Copy(QEngineOCLPtr orig)
{
Expand Down
1 change: 1 addition & 0 deletions include/qengine_opencl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ class QEngineOCL : public QEngine {
throw std::runtime_error(message + ", error code: " + std::to_string(error));
}

using QEngine::Copy;
void Copy(QInterfacePtr orig) { Copy(std::dynamic_pointer_cast<QEngineOCL>(orig)); }
void Copy(QEngineOCLPtr orig)
{
Expand Down

0 comments on commit dd7926a

Please sign in to comment.