summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Fitzgerald <fitzgen@gmail.com>2016-10-12 12:50:32 -0700
committerNick Fitzgerald <fitzgen@gmail.com>2016-10-12 12:50:32 -0700
commit1edf11bee4ca25c40815ddc8653392124192af86 (patch)
treec4b55ff805d6c73136a6de3e20a30c241bdaabce
parent8ed69e853f249e71c7b1f8f24b0297f2473d1e31 (diff)
Be consistent with blank lines in USAGE
Most flags have a blank line between them, but some did not. Now they all do.
-rwxr-xr-xsrc/bin/bindgen.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/bin/bindgen.rs b/src/bin/bindgen.rs
index b8827af2..cb84f09b 100755
--- a/src/bin/bindgen.rs
+++ b/src/bin/bindgen.rs
@@ -66,17 +66,24 @@ Options:
target be set to (i686|x86_64)-pc-win32
--raw-line=<raw> Add a raw line at the beginning of the output.
+
--no-unstable-rust Avoid generating unstable rust.
+
--no-bitfield-methods Avoid generating methods for bitfield access.
+
--opaque-type=<type> Mark a type as opaque.
+
--blacklist-type=<type> Mark a type as hidden.
+
--whitelist-type=<type> Whitelist the type. If this set or any other
of the whitelisting sets is not empty, then
all the non-whitelisted types (or dependant)
won't be generated.
+
--whitelist-function=<regex> Whitelist all the free-standing functions
matching <regex>. Same behavior on emptyness
than the type whitelisting.
+
--whitelist-var=<regex> Whitelist all the free-standing variables
matching <regex>. Same behavior on emptyness
than the type whitelisting.