diff options
| author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2019-01-23 01:58:28 +0000 |
|---|---|---|
| committer | Martin Owens <doctormo@gmail.com> | 2019-03-06 01:26:24 +0000 |
| commit | e71e984af918104579da59e45785fe1651c5e992 (patch) | |
| tree | 9fe91c6e2b1237055e46dc4974c1003c2abc8d61 /src/object/sp-item-rm-unsatisfied-cns.cpp | |
| parent | Revert modal fix to fix #108 (diff) | |
| download | inkscape-e71e984af918104579da59e45785fe1651c5e992.tar.gz inkscape-e71e984af918104579da59e45785fe1651c5e992.zip | |
Avoid the “using std::*;” or “using namespace std;” constructs.
This makes the code a lot less readable and greppable for no reason.
Diffstat (limited to 'src/object/sp-item-rm-unsatisfied-cns.cpp')
| -rw-r--r-- | src/object/sp-item-rm-unsatisfied-cns.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/object/sp-item-rm-unsatisfied-cns.cpp b/src/object/sp-item-rm-unsatisfied-cns.cpp index 88fe6ca56..3b476e20d 100644 --- a/src/object/sp-item-rm-unsatisfied-cns.cpp +++ b/src/object/sp-item-rm-unsatisfied-cns.cpp @@ -10,13 +10,12 @@ #include <algorithm> #include <2geom/coord.h> +#include <vector> #include "remove-last.h" #include "sp-guide.h" #include "sp-item-rm-unsatisfied-cns.h" -using std::vector; - void sp_item_rm_unsatisfied_cns(SPItem &item) { if (item.constraints.empty()) { |
