From c34b026751968b125164344e82005be0d8a632fa Mon Sep 17 00:00:00 2001 From: Sebastien Gilles <sebastien.gilles@inria.fr> Date: Thu, 16 May 2019 15:58:33 +0200 Subject: [PATCH] Cosmetics. --- 6-InRealEnvironment/2-FileStructure.ipynb | 4 ++-- TP/4-Templates/CMakeLists.txt | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/6-InRealEnvironment/2-FileStructure.ipynb b/6-InRealEnvironment/2-FileStructure.ipynb index 98969c6..c900266 100644 --- a/6-InRealEnvironment/2-FileStructure.ipynb +++ b/6-InRealEnvironment/2-FileStructure.ipynb @@ -28,7 +28,7 @@ "To summarize:\n", "\n", "* An **executable** runs the content of the [`main() function`](http://localhost:8888/notebooks/1-ProceduralProgramming/4-Functions.ipynb#A-very-special-function:-main). There should be exactly one such function in all the compiled files; the file with this `main` must be compiled.\n", - "* A **library** is a collection of function, classes and so on that might be used in a program. A library may be **header-only**: in this case it is just an ensemble of header files with no file compiled. In this case all the definitions must be either **inline** or **template**.\n", + "* A **library** is a collection of functions, classes and so on that might be used in a program. A library may be **header-only**: in this case it is just an ensemble of header files with no file compiled. In this case all the definitions must be either **inline** or **template**.\n", "\n", "### Static and shared libraries\n", "\n", @@ -954,7 +954,7 @@ "width": "279px" }, "toc_section_display": true, - "toc_window_display": true + "toc_window_display": false } }, "nbformat": 4, diff --git a/TP/4-Templates/CMakeLists.txt b/TP/4-Templates/CMakeLists.txt index f35601b..1a54201 100644 --- a/TP/4-Templates/CMakeLists.txt +++ b/TP/4-Templates/CMakeLists.txt @@ -44,8 +44,8 @@ add_executable(initial initial_file.cpp) #add_executable(exercice37 exercice37.cpp) #add_executable(exercice38 exercice38.cpp) #add_executable(exercice39 exercice39.cpp) -# add_executable(exercice40 exercice40.cpp) -# add_executable(exercice41 exercice41.cpp) -# add_executable(exercice42 exercice42.cpp) -# add_executable(exercice43 exercice43.cpp) -# add_executable(exercice44 exercice44.cpp) \ No newline at end of file +#add_executable(exercice40 exercice40.cpp) +#add_executable(exercice41 exercice41.cpp) +#add_executable(exercice42 exercice42.cpp) +#add_executable(exercice43 exercice43.cpp) +#add_executable(exercice44 exercice44.cpp) \ No newline at end of file -- GitLab