Talk:Vigenère cipher/Cryptanalysis: Difference between revisions

Content added Content deleted
No edit summary
Line 22: Line 22:
I'm just curious how the C++ changes that were made make it faster? [[User:MagiMaster|MagiMaster]] 02:22, 21 June 2011 (UTC)
I'm just curious how the C++ changes that were made make it faster? [[User:MagiMaster|MagiMaster]] 02:22, 21 June 2011 (UTC)
: *shrug* I can't tell. C++ people are optimization freaks. But on a side note, g++ gives quite a few warnings about ">>" at the end of nested templates (it's ok here, but can be confused with ">>" operator at times), maybe someone should take a look at it. --[[User:Ledrug|Ledrug]] 02:30, 21 June 2011 (UTC)
: *shrug* I can't tell. C++ people are optimization freaks. But on a side note, g++ gives quite a few warnings about ">>" at the end of nested templates (it's ok here, but can be confused with ">>" operator at times), maybe someone should take a look at it. --[[User:Ledrug|Ledrug]] 02:30, 21 June 2011 (UTC)
:: The >> for templates is a C++0x fix. Before that, it was a syntax error, but I guess g++ does it half way even without the -std flag. [[User:MagiMaster|MagiMaster]] 09:55, 21 June 2011 (UTC)