Skip to content

Commit fae8fc9

Browse files
committed
Added a few missing 'pub's
1 parent b894347 commit fae8fc9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/librustc/driver/session.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ pub const count_type_sizes: uint = 1 << 14;
7575
pub const meta_stats: uint = 1 << 15;
7676
pub const no_opt: uint = 1 << 16;
7777
pub const no_monomorphic_collapse: uint = 1 << 17;
78-
const gc: uint = 1 << 18;
79-
const jit: uint = 1 << 19;
80-
const debug_info: uint = 1 << 20;
81-
const extra_debug_info: uint = 1 << 21;
82-
const static: uint = 1 << 22;
78+
pub const gc: uint = 1 << 18;
79+
pub const jit: uint = 1 << 19;
80+
pub const debug_info: uint = 1 << 20;
81+
pub const extra_debug_info: uint = 1 << 21;
82+
pub const static: uint = 1 << 22;
8383

8484
pub fn debugging_opts_map() -> ~[(~str, ~str, uint)] {
8585
~[(~"verbose", ~"in general, enable more debug printouts", verbose),

0 commit comments

Comments
 (0)