chore(util/thread): fix style
This commit is contained in:
parent
ade3f80089
commit
57115688ea
2 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE.
|
|||
|
||||
Author: Leonardo de Moura
|
||||
*/
|
||||
#include <utility>
|
||||
#include <pthread.h>
|
||||
#include <vector>
|
||||
#include <iostream>
|
||||
|
|
|
@ -202,7 +202,7 @@ namespace lean {
|
|||
void initialize_thread();
|
||||
void finalize_thread();
|
||||
|
||||
typedef void (*thread_finalizer)(void *);
|
||||
typedef void (*thread_finalizer)(void *); // NOLINT
|
||||
void register_post_thread_finalizer(thread_finalizer fn, void * p);
|
||||
void register_thread_finalizer(thread_finalizer fn, void * p);
|
||||
void run_thread_finalizers();
|
||||
|
|
Loading…
Reference in a new issue