summaryrefslogtreecommitdiff
path: root/src/components/include/utils/threads/thread_options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/include/utils/threads/thread_options.h')
-rw-r--r--src/components/include/utils/threads/thread_options.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/components/include/utils/threads/thread_options.h b/src/components/include/utils/threads/thread_options.h
index 797ee0693b..2f5c90ae44 100644
--- a/src/components/include/utils/threads/thread_options.h
+++ b/src/components/include/utils/threads/thread_options.h
@@ -51,15 +51,12 @@ class ThreadOptions {
* @param is_joinable - is thread joinable?
*/
explicit ThreadOptions(size_t stack_size = 0, bool is_joinable = true)
- : stack_size_(stack_size),
- is_joinable_(is_joinable) {
- }
+ : stack_size_(stack_size), is_joinable_(is_joinable) {}
/**
* Dtor.
*/
- virtual ~ThreadOptions() {
- }
+ virtual ~ThreadOptions() {}
/**
* Copy ctor.