Changeset d3a85240 for src/libcfa
- Timestamp:
- Jan 11, 2017, 3:30:10 PM (8 years ago)
- 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:
- 2162c2c, 2298a7b8
- Parents:
- dd0c97b (diff), 17e5e2b (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. - Location:
- src/libcfa
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/threads
rdd0c97b rd3a85240 15 15 // 16 16 17 #ifndef __THREADS_H__ 18 #define __THREADS_H__ 17 #ifdef __CFORALL__ 18 19 #ifndef THREADS_H 20 #define THREADS_H 19 21 20 22 #include "assert" // … … 111 113 } 112 114 113 #endif //__THREADS_H__ 115 #endif //THREADS_H 116 117 #else 118 #include_next <thread> 119 #endif //__CFORALL__ 114 120 115 121 // Local Variables: // -
src/libcfa/containers/vector
rdd0c97b rd3a85240 14 14 // 15 15 16 #pragma once 16 #ifdef __CFORALL__ 17 18 #ifndef VECTOR_H 19 #define VECTOR_H 17 20 18 21 extern "C" { … … 165 168 } 166 169 170 #endif // VECTOR_H 171 172 #else 173 #include_next <vector> 174 #endif //__CFORALL__ 175 167 176 // Local Variables: // 168 177 // mode: c // -
src/libcfa/fstream
rdd0c97b rd3a85240 13 13 // Update Count : 88 14 14 // 15 16 #ifdef __CFORALL__ 15 17 16 18 #ifndef __FSTREAM_H__ … … 62 64 #endif // __FSTREAM_H__ 63 65 66 #else 67 #include_next <fstream> 68 #endif //__CFORALL__ 69 64 70 // Local Variables: // 65 71 // mode: c // -
src/libcfa/iostream
rdd0c97b rd3a85240 13 13 // Update Count : 93 14 14 // 15 16 #ifdef __CFORALL__ 15 17 16 18 #ifndef __IOSTREAM_H__ … … 124 126 forall( dtype istype | istream( istype ) ) istype * ?|?( istype *, _Istream_cstrC ); 125 127 126 #endif // __IOSTREAM_H__ 128 #endif // __IOSTREAM_H 129 130 #else 131 #include_next <iostream> 132 #endif //__CFORALL__ 127 133 128 134 // Local Variables: // -
src/libcfa/iterator
rdd0c97b rd3a85240 13 13 // Update Count : 9 14 14 // 15 16 #ifdef __CFORALL__ 15 17 16 18 #ifndef ITERATOR_H … … 46 48 #endif // ITERATOR_H 47 49 50 #else 51 #include_next <iterator> 52 #endif //__CFORALL__ 53 48 54 // Local Variables: // 49 55 // mode: c // -
src/libcfa/limits
rdd0c97b rd3a85240 13 13 // Update Count : 6 14 14 // 15 16 #ifdef __CFORALL__ 17 18 #ifndef LIMITS_H 19 #define LIMITS_H 15 20 16 21 // Integral Constants … … 107 112 extern const long _Complex _1_SQRT_2; // 1 / sqrt(2) 108 113 114 #endif // LIMITS_H 115 116 #else 117 #include_next <limits> 118 #endif //__CFORALL__ 119 109 120 // Local Variables: // 110 121 // mode: c // -
src/libcfa/math
rdd0c97b rd3a85240 14 14 // 15 15 16 #ifdef __CFORALL__ 17 18 #ifndef MATH_H 19 #define MATH_H 20 16 21 extern "C" { 17 22 #include <math.h> // fpclassify, isfinite, isnormal, isnan, isinf … … 349 354 long double scalbln( long double, long int ); 350 355 356 #endif // MATH_H 357 358 #else 359 #include_next <math> 360 #endif //__CFORALL__ 361 351 362 // Local Variables: // 352 363 // mode: c // -
src/libcfa/rational
rdd0c97b rd3a85240 15 15 // Update Count : 16 16 16 // 17 #ifdef __CFORALL__ 18 19 #ifndef RATIONAL_H 20 #define RATIONAL_H 17 21 18 22 #include "iostream" … … 61 65 forall( dtype ostype | ostream( ostype ) ) ostype * ?|?( ostype *, Rational ); 62 66 67 #endif // RATIONAL_H 68 69 #else 70 #include_next <rational> 71 #endif //__CFORALL__ 72 63 73 // Local Variables: // 64 74 // mode: c // -
src/libcfa/stdlib
rdd0c97b rd3a85240 13 13 // Update Count : 99 14 14 // 15 16 #ifdef __CFORALL__ 17 18 #ifndef STDLIB_H 19 #define STDLIB_H 15 20 16 21 //--------------------------------------- … … 131 136 void swap( T * t1, T * t2 ); 132 137 138 #endif // STDLIB_H 139 140 #else 141 #include_next <stdlib> 142 #endif //__CFORALL__ 143 133 144 // Local Variables: // 134 145 // mode: c //
Note: See TracChangeset
for help on using the changeset viewer.