[education/rkward] rkward/rbackend: remove unneeded copy ctor
Thomas Friedrichsmeier
null at kde.org
Thu Apr 24 11:37:01 BST 2025
Git commit ced6e99437bf58d476fa6155d0302c29f50a3d18 by Thomas Friedrichsmeier.
Committed on 24/04/2025 at 07:40.
Pushed by tfry into branch 'master'.
remove unneeded copy ctor
M +0 -1 rkward/rbackend/rcommand.h
https://invent.kde.org/education/rkward/-/commit/ced6e99437bf58d476fa6155d0302c29f50a3d18
diff --git a/rkward/rbackend/rcommand.h b/rkward/rbackend/rcommand.h
index 8f5580f0b..73f6358b2 100644
--- a/rkward/rbackend/rcommand.h
+++ b/rkward/rbackend/rcommand.h
@@ -44,7 +44,6 @@ friend class RCommandStackModel;
/** this struct is used to store the R output to an RCommand. The RCommand basically keeps a list of ROutputString (s). The difference to a normal
QString is, that additionally we store information on whether the output was "normal", "warning", or an "error". */
struct ROutput {
- ROutput(const ROutput &other) : type(other.type), output(other.output) {};
ROutput() : type(NoOutput) {};
enum ROutputType {
NoOutput, /**< No output. Rarely used. */
More information about the rkward-tracker
mailing list