Sébastien Loriot
28fe5170c5
add missing include
2014-06-30 15:54:04 +02:00
Sébastien Loriot
990336b1e5
rename macro
2014-06-30 11:06:30 +02:00
Andreas Fabri
4b91ac49af
also test leda if it is available
2013-03-23 08:03:32 +01:00
Andreas Fabri
5ea77276c6
disable warning decorated name length exceeded, name was truncated
2013-03-01 16:50:53 +01:00
Andreas Fabri
e44de39ada
switch from int to bool to avoid a performance warning
2013-02-08 18:16:53 +01:00
Andreas Fabri
2ea8fab6eb
change return type from int to bool
2013-02-07 20:29:27 +01:00
Laurent Rineau
d19578725b
Fix warnings
2013-02-07 18:15:23 +01:00
Sébastien Loriot
4ec9529581
Merge branch 'doxy-port-pmoeller'
...
Conflicts:
.gitattributes
Surface_reconstruction_points_3/include/CGAL/Poisson_reconstruction_function.h
Surface_reconstruction_points_3/include/CGAL/Reconstruction_triangulation_3.h
Surface_reconstruction_points_3/include/CGAL/k_nearest_neighbor.h
2012-11-27 10:05:41 +01:00
Philipp Möller
09e65b9c40
Drop the include guard and remove assert_equal_types
...
The include guard is unnecessary (tags.h is part of basic and no one
else defines it anymore) and it shouldn't be used anyway.
assert_equal_types doesn't do it's job completely and it's usage in
Nef_2 has been replaced.
2012-11-17 01:56:05 +01:00
Sébastien Loriot
128b02abb8
update CGAL custom doxygen macros
...
corresponds to a run of the script Documentation/conversion_tools/rename_macros.sh
+manual edit of doxyassist.xml and pkglist_filter.py
2012-11-14 00:31:05 +01:00
Laurent Rineau
db194534c7
First big patch to fix -Wunused-local-typedefs
...
-Wunused-local-typedefs is a new warning flag of gcc-4.7, and it will enabled
by -Wall since gcc-4.8 (not yet released).
The fix is a big set of removals of unused typedefs (or comments, or moves,
depending on the context).
2012-08-01 13:29:16 +00:00
Sébastien Loriot
24070082f6
*deprecate the use of geninfo
...
*naive replacement of void* and geninfo by boost::any.
*old code can be used if CGAL_I_DO_WANT_TO_USE_GENINFO is defined
*info was printed, I simply ignored that for boost::any
(it probably made sense why the old implementation of geninfo that was using placement new to write
inside the void*)
*some sizeof(void*) was used in SNC_structure.h for printing the size of something.
I guessed this was related to the void* used as info. I left that code untouched.
*testsuite is OK on my machine except Nef_3/example/Nef_3/polygon_construction which also
does not work with next on my machine
2012-04-17 18:18:09 +00:00
Philipp Möller
0c5b3fcf85
WARNINGFIX: Nef_2 is no longer triggering a "suggest parenthesis"
2012-04-16 16:21:21 +00:00
Laurent Rineau
6824cd0605
Remove an unused variable
2012-01-31 15:11:10 +00:00
Laurent Rineau
8f59fd9592
Turn QPL into LGPLv3+
2012-01-13 16:33:35 +00:00
Sébastien Loriot
91a5327fa8
change LGPLv2 -> LGPLv3
2011-10-10 13:48:25 +00:00
Andreas Fabri
cbfe32ce37
Add declspecs for Visual C++ so that we can build dlls
2011-10-05 19:12:23 +00:00
Sébastien Loriot
8ce2048aea
add #include<CGAL/config.h> before any directive CGAL_USE_*
2011-03-02 18:52:57 +00:00
Sébastien Loriot
0d4dba11fa
temporary fix of geninfo that avoid an aliasing problem. The solution chosen is probably slower but safe.
...
Will for a better fix after the release.
2011-02-25 16:24:10 +00:00
Sébastien Loriot
a155b2c4da
remove warnings
2011-02-25 15:16:21 +00:00
Andreas Fabri
087b2d2ce0
Add parenthesis to quit down clang and have more readable code
2010-12-06 14:58:54 +00:00
Laurent Rineau
35a3c17f1e
Fix warnings: braces around empty body, and unused parameters.
2010-06-29 12:38:52 +00:00
Andreas Fabri
92a037a450
Some int->size_t. Perform static_cast<int> as Polynomial degree is bound by int not size_t
2010-06-22 09:38:32 +00:00
Sébastien Loriot
52317dd49f
add python script (replace_CGAL_NAMESPACE.py) to replace CGAL_BEGIN_NAMESPACE and CGAL_END_NAMESPACE
...
by namespace CGAL { and } //namespace CGAL. in all .h and .cpp files
in a directory.
Apply it to all packages in the trunk
Remove macro definition from the config.h file.
2010-06-09 07:37:13 +00:00
Andreas Fabri
9db08e1461
Add using statements for ansi-compliance
2010-05-18 07:19:35 +00:00
Andreas Fabri
38530dd89d
Add 'using' for ansi compliance
2010-05-17 07:11:44 +00:00
Andreas Fabri
cfc38df79c
Add 'using' for ansi compliance
2010-05-16 13:25:15 +00:00
Andreas Fabri
a40ea9d137
Add using statements for ansi-compliance
2010-05-13 15:19:34 +00:00
Andreas Fabri
6f7944174d
Add 'using' for ansi compliance
2010-05-11 12:05:22 +00:00
Andreas Fabri
13f152b974
Remove unused and unconstructible default constructor
2010-05-10 10:16:44 +00:00
Michael Hemmer
1a3efc713a
fix include guard
2010-04-20 07:45:54 +00:00
Sylvain Pion
85dc12f2a7
Remove empty lines at beginning and end of files
...
(apply Scripts/developer_scripts/remove_empty_lines.pl).
2010-02-01 12:55:28 +00:00
Sylvain Pion
6cc542446d
Fix some typos in the protect macro names.
...
Use a form "#ifndef" more consistently.
The idea is to automatize most of the verification of the consistency
in the names used in the #ifndef and the following #define using a simple :
grep -r -m 1 '#ifndef' */include/CGAL | grep CGAL_ | cut -d' ' -f2 | sort > ifndef.macros
grep -r -m 1 '#define' */include/CGAL | grep CGAL_ | cut -d' ' -f2 | sort > define.macros
diff ifndef.macros define.macros
2009-04-08 11:54:51 +00:00
Sylvain Pion
6aba449434
Replace Nef's custom Object_handle by CGAL::Object.
...
There were some differences :
- CGAL::Object has no template constructor, so using make_object() was required.
- CGAL::Object had no comparison with NULL to check emptyness. I added
such comparison operators to CGAL::Object as *deprecated*.
2008-09-09 16:03:25 +00:00
Sylvain Pion
eff6efd3af
CGAL_NULL and CGAL_NULL_TYPE are now constant macros, so replace them by:
...
- CGAL_NULL -> NULL
- CGAL_NULL_TYPE -> CGAL::Nullptr_t (typedef to const void *)
2008-07-12 21:58:52 +00:00
Peter Hachenberger
2294e0452c
explicit declaration of tye slist_item
2008-06-27 10:02:41 +00:00
Andreas Fabri
75dd77e648
Make operator() const
2008-01-21 08:10:50 +00:00
Sylvain Pion
4d1b8d63e3
Remove workarounds and support for the BORLAND compiler.
2008-01-20 20:24:20 +00:00
Sylvain Pion
f24caaf675
Use CGAL_assertion() instead of assert().
2008-01-20 18:27:11 +00:00
Peter Hachenberger
45cbea353a
removed experimental old code
2008-01-15 16:59:14 +00:00
Sylvain Pion
29cf96f6c2
Add missing CGAL_ prefix to protect macros
2008-01-14 23:08:43 +00:00
Sylvain Pion
f166d60a73
Add missing CGAL_ prefix to protect macros
2008-01-14 23:06:54 +00:00
Sylvain Pion
9d4a1851f1
Remove buggy bitrotting copy of HDS/include/CGAL/HalfedgeDS_items_decorator.h .
2008-01-14 22:54:43 +00:00
Sylvain Pion
aad4ee729e
Fix protect macro name
2008-01-12 21:08:22 +00:00
Sylvain Pion
a3ee71d44f
Get rid of obsolete Window_stream (LEDA window) code.
2008-01-10 18:10:23 +00:00
Peter Hachenberger
5415379102
two bugs fixed: y2x must be reset
2008-01-10 11:04:39 +00:00
Peter Hachenberger
2cfca8e125
also solved X-structure by Multiset
2008-01-04 16:09:28 +00:00
Peter Hachenberger
0ec0010667
new stl traits for overlay using red-black tree
2008-01-03 14:46:18 +00:00
Andreas Meyer
0f941fbcf2
again CGAL_error -> CGAL_error_msg
2007-11-09 15:27:44 +00:00
Andreas Meyer
c1d1609af1
replaced CGAL_assertion( false* and CGAL_assertion( 0*
...
with CGAL_error/CGAL_error_msg
2007-11-08 00:27:20 +00:00