Ignore:
Timestamp:
Jan 9, 2017, 5:34:26 PM (8 years ago)
Author:
Thierry Delisle <tdelisle@…>
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:
d3a85240, ff2d7341
Parents:
f7ff3fb
Message:

Added proper include guards to cfa headers so they can be added to the c++ include path without issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/libcfa/rational

    rf7ff3fb r17e5e2b  
    1515// Update Count     : 16
    1616//
     17#ifdef __CFORALL__
     18
     19#ifndef RATIONAL_H
     20#define RATIONAL_H
    1721
    1822#include "iostream"
     
    6165forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, Rational );
    6266
     67#endif // RATIONAL_H
     68
     69#else
     70#include_next <rational>
     71#endif //__CFORALL__
     72
    6373// Local Variables: //
    6474// mode: c //
Note: See TracChangeset for help on using the changeset viewer.