From add7f56c88ec10b3d24fa777f835c86137e20c18 Mon Sep 17 00:00:00 2001 From: Sylvain Pion Date: Mon, 28 Jul 2008 16:32:13 +0000 Subject: [PATCH] Remove obsolete file (it seems it has been merged into Manual/doc_tex/Introduction/main.tex). --- Manual/doc_tex/Introduction_ref/inlining.tex | 28 -------------------- 1 file changed, 28 deletions(-) delete mode 100644 Manual/doc_tex/Introduction_ref/inlining.tex diff --git a/Manual/doc_tex/Introduction_ref/inlining.tex b/Manual/doc_tex/Introduction_ref/inlining.tex deleted file mode 100644 index 91d8221db03..00000000000 --- a/Manual/doc_tex/Introduction_ref/inlining.tex +++ /dev/null @@ -1,28 +0,0 @@ -\section{Compile-time Flags to Control Inlining} -\ccIndexMainItem{code optimization} -\ccIndexMainItem{inlining} -\ccIndexMainItem{\tt inline} - -Making functions inlined can, at times, improve the efficiency of your code. -However this is not always the case and it can differ for a single function -depending on the application in which it is used. Thus \cgal\ defines a set -of compile-time macros that can be used to control whether certain functions -are designated as inlined functions or not. The following table lists the -macros and their default values, which are set in one of the \cgal\ include -files. - -\begin{tabular}{l|l} - macro name & default \\ \hline -\ccc{CGAL_KERNEL_INLINE} & inline \\ -\ccc{CGAL_KERNEL_MEDIUM_INLINE} & \\ -\ccc{CGAL_KERNEL_LARGE_INLINE} & \\ -\ccc{CGAL_MEDIUM_INLINE} & inline \\ -\ccc{CGAL_LARGE_INLINE} & \\ -\ccc{CGAL_HUGE_INLINE} & -\end{tabular} - -If you wish to change the value of one or more of these macros, -you can simply give it a new value when compiling. For example, to make -functions that use the macro \ccc{CGAL_KERNEL_MEDIUM_INLINE} inline functions, -you should set the value of this macro to \texttt{inline} instead of the -default blank.