mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
rt: Consistently refer to structs as structs and classes as classes. Clang complains about this.
This commit is contained in:
parent
f8514d95d0
commit
7641142ce2
@ -47,8 +47,8 @@ extern "C" {
|
||||
#include "sync/lock_and_signal.h"
|
||||
#include "sync/lock_free_queue.h"
|
||||
|
||||
class rust_dom;
|
||||
class rust_task;
|
||||
struct rust_dom;
|
||||
struct rust_task;
|
||||
class rust_log;
|
||||
class rust_port;
|
||||
class rust_chan;
|
||||
|
@ -22,8 +22,8 @@ const uint32_t log_note = 1;
|
||||
} \
|
||||
} while (0)
|
||||
|
||||
class rust_dom;
|
||||
class rust_task;
|
||||
struct rust_dom;
|
||||
struct rust_task;
|
||||
|
||||
class rust_log {
|
||||
|
||||
|
@ -64,7 +64,7 @@ public:
|
||||
};
|
||||
|
||||
class rust_message_queue;
|
||||
class rust_task;
|
||||
struct rust_task;
|
||||
|
||||
//
|
||||
// Local Variables:
|
||||
|
Loading…
Reference in New Issue
Block a user