Ignore:
Timestamp:
Aug 22, 2017, 7:31:52 PM (7 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
9aaac6e9
Parents:
fc56cdbf (diff), b3d413b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into references

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Tuples/TupleAssignment.cc

    rfc56cdbf r8135d4c  
    1414//
    1515
    16 #include "ResolvExpr/AlternativeFinder.h"
    17 #include "ResolvExpr/Alternative.h"
    18 #include "ResolvExpr/typeops.h"
    19 #include "SynTree/Expression.h"
    20 #include "SynTree/Initializer.h"
    21 #include "Tuples.h"
    22 #include "Explode.h"
    23 #include "Common/SemanticError.h"
     16#include <algorithm>                       // for transform
     17#include <cassert>                         // for assert
     18#include <iterator>                        // for back_insert_iterator, back...
     19#include <list>                            // for _List_const_iterator, _Lis...
     20#include <memory>                          // for unique_ptr, allocator_trai...
     21#include <string>                          // for string
     22
    2423#include "CodeGen/OperatorTable.h"
    25 #include "InitTweak/InitTweak.h"
    26 #include "InitTweak/GenInit.h"
    27 
    28 #include <functional>
    29 #include <algorithm>
    30 #include <iterator>
    31 #include <iostream>
    32 #include <cassert>
    33 #include <set>
    34 #include <unordered_set>
     24#include "Common/UniqueName.h"             // for UniqueName
     25#include "Common/utility.h"                // for zipWith
     26#include "Explode.h"                       // for explode
     27#include "InitTweak/GenInit.h"             // for genCtorInit
     28#include "InitTweak/InitTweak.h"           // for getPointerBase, isAssignment
     29#include "Parser/LinkageSpec.h"            // for Cforall
     30#include "ResolvExpr/Alternative.h"        // for AltList, Alternative
     31#include "ResolvExpr/AlternativeFinder.h"  // for AlternativeFinder, simpleC...
     32#include "ResolvExpr/Cost.h"               // for Cost
     33#include "ResolvExpr/Resolver.h"           // for resolveCtorInit
     34#include "ResolvExpr/TypeEnvironment.h"    // for TypeEnvironment
     35#include "SynTree/Declaration.h"           // for ObjectDecl
     36#include "SynTree/Expression.h"            // for Expression, CastExpr, Name...
     37#include "SynTree/Initializer.h"           // for ConstructorInit, SingleInit
     38#include "SynTree/Statement.h"             // for ExprStmt
     39#include "SynTree/Type.h"                  // for Type, Type::Qualifiers
     40#include "SynTree/TypeSubstitution.h"      // for TypeSubstitution
     41#include "SynTree/Visitor.h"               // for Visitor
    3542
    3643namespace Tuples {
Note: See TracChangeset for help on using the changeset viewer.