Skip to content

Commit

Permalink
One style quotes in gyp-file
Browse files Browse the repository at this point in the history
  • Loading branch information
fanatid committed Dec 20, 2015
1 parent a37bb1d commit 5061632
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,14 @@
}
],
[
'OS=="mac"', {
"OS=='mac'", {
"libraries": [
"-L/usr/local/lib"
],
"xcode_settings": {
"MACOSX_DEPLOYMENT_TARGET": '10.7',
"MACOSX_DEPLOYMENT_TARGET": "10.7",
"OTHER_CPLUSPLUSFLAGS": [
'-stdlib=libc++'
"-stdlib=libc++"
]
}
}],
Expand Down
1 change: 0 additions & 1 deletion src/publickey.cc
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ NAN_METHOD(publicKeyCombine) {
CHECK_TYPE_ARRAY(buffers, EC_PUBKEYS_TYPE_INVALID);
CHECK_LENGTH_GT_ZERO(buffers, EC_PUBKEYS_LENGTH_INVALID);

// vector instead new for public_keys?
std::unique_ptr<secp256k1_pubkey[]> public_keys(new secp256k1_pubkey[buffers->Length()]);
std::unique_ptr<secp256k1_pubkey*[]> ins(new secp256k1_pubkey*[buffers->Length()]);
for (unsigned int i = 0; i < buffers->Length(); ++i) {
Expand Down
4 changes: 3 additions & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ var repeat = global.__env__ && global.__env__.RANDOM_TESTS_REPEAT ||
10
repeat = parseInt(repeat, 10)

var isTravis = global.__env__ && global.__env__.TRAVIS || process.env.TRAVIS || false
var isTravis = global.__env__ && global.__env__.TRAVIS ||
process.env.TRAVIS ||
false

/**
* @param {Object} secp256k1
Expand Down

0 comments on commit 5061632

Please sign in to comment.