Fix indentation.

This commit is contained in:
Sean Bowe
2017-03-17 11:36:32 -06:00
parent 2c9ee1a8bb
commit 91348647a8
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
#include <stdint.h>
extern "C" {
uint64_t librustzcash_xor(uint64_t a, uint64_t b);
uint64_t librustzcash_xor(uint64_t a, uint64_t b);
}
#endif // LIBRUSTZCASH_INCLUDE_H_

View File

@@ -12,5 +12,5 @@ pub extern "system" fn librustzcash_xor(a: uint64_t, b: uint64_t) -> uint64_t
#[test]
fn test_xor() {
assert_eq!(librustzcash_xor(0x0f0f0f0f0f0f0f0f, 0x1111111111111111), 0x1e1e1e1e1e1e1e1e);
assert_eq!(librustzcash_xor(0x0f0f0f0f0f0f0f0f, 0x1111111111111111), 0x1e1e1e1e1e1e1e1e);
}