~ubuntu-core-dev/apt/oneiric

« back to all changes in this revision

Viewing changes to test/libapt/getarchitectures_test.cc

  • Committer: Michael Vogt
  • Date: 2011-08-15 12:14:35 UTC
  • mfrom: (1327.97.57 debian-sid)
  • Revision ID: michael.vogt@ubuntu.com-20110815121435-ya00o0nicb1kiz2y
merged from the debian-sid branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
#include <iostream>
9
9
 
10
 
// simple helper to quickly output a vector of strings
11
 
void dumpVector(std::vector<std::string> vec) {
12
 
        for (std::vector<std::string>::const_iterator v = vec.begin();
13
 
             v != vec.end(); v++)
14
 
                std::cout << *v << std::endl;
15
 
}
16
 
 
17
10
int main(int argc,char *argv[])
18
11
{
19
12
        std::vector<std::string> vec;