We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbbe8a1 commit c9841a3Copy full SHA for c9841a3
include/scratchcpp/variable.h
@@ -29,8 +29,6 @@ class LIBSCRATCHCPP_EXPORT Variable : public Entity
29
bool isCloudVariable() const;
30
void setIsCloudVariable(bool isCloudVariable);
31
32
- void add(const Value &v);
33
-
34
private:
35
spimpl::unique_impl_ptr<VariablePrivate> impl;
36
};
src/scratch/variable.cpp
@@ -48,9 +48,3 @@ void Variable::setIsCloudVariable(bool isCloudVariable)
48
{
49
impl->isCloudVariable = isCloudVariable;
50
}
51
52
-/*! Adds the given value to the variable's value. \see Value::add() */
53
-void Variable::add(const Value &v)
54
-{
55
- impl->value.add(v);
56
-}
0 commit comments