Changeset 80eefcb for src/SynTree/Type.h


Ignore:
Timestamp:
Feb 14, 2019, 11:14:50 AM (5 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
no_list
Children:
99614c2
Parents:
8d25360
Message:

Forall list now uses vector

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Type.h

    r8d25360 r80eefcb  
    1010// Created On       : Mon May 18 07:44:20 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Sep 25 14:14:01 2017
    13 // Update Count     : 154
     12// Last Modified On : Fri Feb  8 09:17:09 2019
     13// Update Count     : 164
    1414//
    1515
     
    1818#include <strings.h>         // for ffs
    1919#include <cassert>           // for assert, assertf
    20 #include <list>              // for list, _List_iterator
     20#include <list>
    2121#include <ostream>           // for ostream, operator<<, basic_ostream
    2222#include <string>            // for string
    23 #include <vector>
     23#include <vector>            // for vector
    2424
    2525#include "BaseSyntaxNode.h"  // for BaseSyntaxNode
     
    134134        }; // Qualifiers
    135135
    136         typedef std::list<TypeDecl *> ForallList;
     136        typedef std::vector<TypeDecl *> ForallList;
    137137
    138138        Qualifiers tq;
Note: See TracChangeset for help on using the changeset viewer.