]> git.saurik.com Git - apt.git/blobdiff - test/interactive-helper/test_udevcdrom.cc
do not pollute namespace in the headers with using (Closes: #500198)
[apt.git] / test / interactive-helper / test_udevcdrom.cc
index dc25ab357d16311421fc8d9e3b712f5249536937..bbedc0ab517bdcb05709dd39757e2b1c3c1b4159 100644 (file)
@@ -2,12 +2,14 @@
 #include <stdio.h>
 #include <assert.h>
 
+#include <vector>
+
 int main()
 {
    pkgUdevCdromDevices c;
    assert(c.Dlopen());
 
-   vector<CdromDevice> l;
+   std::vector<CdromDevice> l;
    l = c.Scan();
    assert(l.empty() == false);
    for (size_t i = 0; i < l.size(); ++i)