mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
Fix a "class <-> struct" warning with clang++
This commit is contained in:
parent
909d24cde6
commit
ebba30d671
1 changed files with 1 additions and 1 deletions
2
proc.h
2
proc.h
|
@ -204,7 +204,7 @@ class process_t
|
|||
int count_help_magic;
|
||||
|
||||
/** Next process in pipeline. We own this and we are responsible for deleting it. */
|
||||
struct process_t *next;
|
||||
process_t *next;
|
||||
#ifdef HAVE__PROC_SELF_STAT
|
||||
/** Last time of cpu time check */
|
||||
struct timeval last_time;
|
||||
|
|
Loading…
Reference in a new issue