Changeset 6521
- Timestamp:
- 16/03/10 12:59:52 (2 years ago)
- Location:
- branches/stable_5.0
- Files:
-
- 1 added
- 3 modified
-
PROBE/Makefile (modified) (6 diffs)
-
PROBE/probe_tree.hxx (modified) (3 diffs)
-
SOURCE_TOOLS/generate_all_links.sh (modified) (1 diff)
-
TEMPLATES/static_assert.h (added)
Legend:
- Unmodified
- Added
- Removed
-
branches/stable_5.0/PROBE/Makefile
r5968 r6521 51 51 PT_buildtree.o: $(ARBHOME)/INCLUDE/PT_server.h 52 52 PT_buildtree.o: $(ARBHOME)/INCLUDE/PT_server_prototypes.h 53 PT_buildtree.o: $(ARBHOME)/INCLUDE/static_assert.h 53 54 54 55 PT_etc.o: probe.h … … 79 80 PT_family.o: $(ARBHOME)/INCLUDE/PT_server.h 80 81 PT_family.o: $(ARBHOME)/INCLUDE/PT_server_prototypes.h 82 PT_family.o: $(ARBHOME)/INCLUDE/static_assert.h 81 83 PT_family.o: $(ARBHOME)/INCLUDE/struct_man.h 82 84 … … 93 95 PT_findEx.o: $(ARBHOME)/INCLUDE/PT_server.h 94 96 PT_findEx.o: $(ARBHOME)/INCLUDE/PT_server_prototypes.h 97 PT_findEx.o: $(ARBHOME)/INCLUDE/static_assert.h 95 98 96 99 PT_io.o: probe.h … … 141 144 PT_match.o: $(ARBHOME)/INCLUDE/PT_server.h 142 145 PT_match.o: $(ARBHOME)/INCLUDE/PT_server_prototypes.h 146 PT_match.o: $(ARBHOME)/INCLUDE/static_assert.h 143 147 PT_match.o: $(ARBHOME)/INCLUDE/struct_man.h 144 148 … … 158 162 PT_new_design.o: $(ARBHOME)/INCLUDE/PT_server.h 159 163 PT_new_design.o: $(ARBHOME)/INCLUDE/PT_server_prototypes.h 164 PT_new_design.o: $(ARBHOME)/INCLUDE/static_assert.h 160 165 PT_new_design.o: $(ARBHOME)/INCLUDE/struct_man.h 161 166 … … 170 175 PT_prefixtree.o: $(ARBHOME)/INCLUDE/PT_com.h 171 176 PT_prefixtree.o: $(ARBHOME)/INCLUDE/PT_server.h 177 PT_prefixtree.o: $(ARBHOME)/INCLUDE/static_assert.h 172 178 173 179 PT_secundaer.o: probe.h -
branches/stable_5.0/PROBE/probe_tree.hxx
r5919 r6521 4 4 #include <bits/wordsize.h> 5 5 #endif // DARWIN 6 7 #ifndef STATIC_ASSERT_H 8 #include <static_assert.h> 9 #endif 6 10 7 11 #define PTM_magic 0xf4 … … 226 230 #ifdef ARB_64 227 231 232 COMPILE_ASSERT(sizeof(void*) == sizeof(unsigned long)); 233 228 234 # define PT_READ_PNTR(ptr,my_int_i) \ 229 235 do { \ … … 240 246 #else 241 247 /* not ARB_64 */ 248 249 COMPILE_ASSERT(sizeof(void*) == sizeof(unsigned int)); 242 250 243 251 # define PT_READ_PNTR(ptr,my_int_i) PT_READ_INT(ptr, my_int_i) -
branches/stable_5.0/SOURCE_TOOLS/generate_all_links.sh
r6023 r6521 124 124 symlink ../TEMPLATES/perf_timer.h INCLUDE/perf_timer.h && 125 125 symlink ../TEMPLATES/smartptr.h INCLUDE/smartptr.h && 126 symlink ../TEMPLATES/static_assert.h INCLUDE/static_assert.h && 126 127 127 128 symlink_maybe_no_target ../TEMPLATES/arb_build.h INCLUDE/arb_build.h &&
