We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ce8c5d commit 3d7e500Copy full SHA for 3d7e500
tests/test_deprecated_ur_driver_construction.cpp
@@ -33,6 +33,14 @@
33
#include <thread>
34
#include "ur_client_library/ur/ur_driver.h"
35
36
+// This file adds tests for deprecated constructors of UrDriver. To avoid a compiler warning in CI
37
+// we suppress the warning inside this file / compilation unit.
38
+#ifdef _MSC_VER
39
+# pragma warning(disable : 4996)
40
+#else
41
+# pragma GCC diagnostic ignored "-Wdeprecated-declarations"
42
+#endif
43
+
44
const std::string SCRIPT_FILE = "../resources/external_control.urscript";
45
const std::string OUTPUT_RECIPE = "resources/rtde_output_recipe.txt";
46
const std::string INPUT_RECIPE = "resources/rtde_input_recipe.txt";
0 commit comments