This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: cryptopp/algebra.cpp | |
=================================================================== | |
--- cryptopp/algebra.cpp (revision 5) | |
+++ cryptopp/algebra.cpp (working copy) | |
@@ -58,7 +58,7 @@ | |
Element g[3]={b, a}; | |
unsigned int i0=0, i1=1, i2=2; | |
- while (!Equal(g[i1], this->Identity())) | |
+ while (!this->Equal(g[i1], this->Identity())) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var websocket = require('websocket'); | |
var client = new websocket.client(); | |
client.on('connectFailed', function() { console.log(arguments); }); | |
client.on('connect', function(conn) { | |
console.log('connected!'); | |
conn.on('message', function(message) { | |
console.log(message); |
NewerOlder