forked from hsf-training/cpluspluscourse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
56 lines (52 loc) · 1011 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# latex related, Course
C++Course.*
!C++Course.tex
_minted*
# latex related, exercise intro
exercisesIntro.log
exercisesIntro.nav
exercisesIntro.out
exercisesIntro.snm
exercisesIntro.toc
exercisesIntro.vrb
exercisesIntro.pdf
# exercises
build
*.a
*.o
*.so
*.sol
*.sol?
code/*aux
code/callgrind/fibocrunch
code/control/control
code/loopsRefsAuto/loopsRefsAuto
code/operators/operators
code/concepts/concepts
code/constness/constplay
code/cppcheck/randomize
code/debug/randomize
code/functions/functions
code/helgrind/fiboMT
code/hello/hello
code/lambdas/randomize
code/memcheck/memleak
code/move/trymove
code/optional/optional
code/polymorphism/trypoly
code/race/racing
code/stl/randomize.nostl
code/templates/playwithsort
code/valgrind/randomize
code/variant/variant
code/virtual_inheritance/trymultiherit
code/smartPointers/smartPointers
# tools
CMakeCache.txt
CMakeFiles
cmake_install.cmake
callgrind.out.*
# just for the allcontributors cli installation...
package-lock.json
package.json
node_modules/**