Skip to content

Instantly share code, notes, and snippets.

@jordanlewis
Created May 4, 2010 21:00
Show Gist options
  • Save jordanlewis/389977 to your computer and use it in GitHub Desktop.
Save jordanlewis/389977 to your computer and use it in GitHub Desktop.
#include <deque>
using namespace std;
int main(int argc, char **argv)
{
deque<int> dq;
dq = deque<int>();
for (deque<int>::iterator iter = dq.begin(); iter != dq.end(); ++iter)
{
return 1;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment