diff --git a/soclib/lib/elf_loader/src/elf_section.cpp b/soclib/lib/elf_loader/src/elf_section.cpp
index 1dfd52d..cd8f8f6 100644
|
a
|
b
|
extern "C" { |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | 31 | #include <algorithm> |
| | 32 | #include <cassert> |
| 32 | 33 | #include <string.h> |
| 33 | 34 | #include <cassert> |
| 34 | 35 | |
diff --git a/soclib/lib/fb_controller/include/fb_controller.h b/soclib/lib/fb_controller/include/fb_controller.h
index d67b1b0..19deb7a 100644
|
a
|
b
|
|
| 30 | 30 | |
| 31 | 31 | #include <assert.h> |
| 32 | 32 | #include <inttypes.h> |
| | 33 | #include <cassert> |
| 33 | 34 | #include "process_wrapper.h" |
| 34 | 35 | |
| 35 | 36 | namespace soclib { namespace common { |
diff --git a/soclib/lib/fb_controller/src/fb_controller.cpp b/soclib/lib/fb_controller/src/fb_controller.cpp
index 9bbe11d..9c75d93 100644
|
a
|
b
|
|
| 28 | 28 | #include <sstream> |
| 29 | 29 | |
| 30 | 30 | #include <signal.h> |
| | 31 | #include <string.h> |
| 31 | 32 | #include <sys/mman.h> |
| 32 | 33 | #include <sys/types.h> |
| 33 | 34 | #include <sys/stat.h> |
diff --git a/soclib/module/internal_component/vci_xcache_wrapper/caba/source/src/vci_xcache_wrapper.cpp b/soclib/module/internal_component/vci_xcache_wrapper/caba/source/src/vci_xcache_wrapper.cpp
index d9cc721..df83bbb 100644
|
a
|
b
|
|
| 57 | 57 | /////////////////////////////////////////////////////////////////////////////// |
| 58 | 58 | |
| 59 | 59 | #include <cassert> |
| | 60 | #include <limits> |
| 60 | 61 | #include "arithmetics.h" |
| 61 | 62 | #include "../include/vci_xcache_wrapper.h" |
| 62 | 63 | |
diff --git a/utils/lib/python/soclib_desc/parameter.py b/utils/lib/python/soclib_desc/parameter.py
index 32e3a60..3796c23 100644
|
a
|
b
|
class Parameter(Base): |
| 85 | 85 | if value is None: |
| 86 | 86 | value = self.default |
| 87 | 87 | if value is None: |
| 88 | | raise ValueError("Pleasy give a value for parameter `%s'"%self.name) |
| | 88 | raise ValueError("Please give a value for parameter `%s'"%self.name) |
| 89 | 89 | self.assertValid(value) |
| 90 | 90 | return value |
| 91 | 91 | |
diff --git a/utils/src/fb_screen/fb.c b/utils/src/fb_screen/fb.c
index 0fd7aa7..8bb85c5 100644
|
a
|
b
|
|
| 33 | 33 | #include <string.h> |
| 34 | 34 | #include <errno.h> |
| 35 | 35 | #include <sys/types.h> |
| | 36 | #include <errno.h> |
| 36 | 37 | #include <signal.h> |
| 37 | 38 | #include <sys/uio.h> |
| 38 | 39 | #include <unistd.h> |
| 39 | 40 | #include <poll.h> |
| 40 | | #include <sys/types.h> |
| 41 | 41 | #include <sys/mman.h> |
| 42 | 42 | #include <stdint.h> |
| 43 | 43 | #include <SDL.h> |