Click here to Skip to main content
15,908,675 members

Bugs and Suggestions

   

General discussions, site bug reports and suggestions about the site.

For general questions check out the CodeProject FAQs. To report spam and abuse Head to the Spam and abuse watch. If you wish to report a bug privately, especially those related to security, please email webmaster@codeproject.com

 
GeneralRe: Do you want to open or save iframelogin.json (11 bytes) from workspaces.codeproject.com? Pin
Chris Maunder15-May-14 1:33
cofounderChris Maunder15-May-14 1:33 
GeneralRe: Do you want to open or save iframelogin.json (11 bytes) from workspaces.codeproject.com? Pin
Vasudevan Deepak Kumar15-May-14 2:59
Vasudevan Deepak Kumar15-May-14 2:59 
GeneralRe: Do you want to open or save iframelogin.json (11 bytes) from workspaces.codeproject.com? Pin
Kamil Burzynski15-May-14 3:07
sitebuilderKamil Burzynski15-May-14 3:07 
SuggestionReports required to remove the content Pin
Thanks787214-May-14 1:14
professionalThanks787214-May-14 1:14 
AnswerRe: Reports required to remove the content Pin
Chris Maunder15-May-14 1:56
cofounderChris Maunder15-May-14 1:56 
GeneralRe: Reports required to remove the content Pin
Thanks787215-May-14 2:27
professionalThanks787215-May-14 2:27 
GeneralRe: Reports required to remove the content Pin
Chris Maunder15-May-14 16:01
cofounderChris Maunder15-May-14 16:01 
GeneralRe: Reports required to remove the content Pin
Thanks787215-May-14 18:20
professionalThanks787215-May-14 18:20 
GeneralRe: Reports required to remove the content Pin
Chris Maunder18-Jul-14 16:19
cofounderChris Maunder18-Jul-14 16:19 
GeneralRe: Reports required to remove the content Pin
ZurdoDev16-May-14 3:00
professionalZurdoDev16-May-14 3:00 
GeneralRe: Reports required to remove the content Pin
Matt T Heffron16-May-14 7:49
professionalMatt T Heffron16-May-14 7:49 
SuggestionC++ Code formatting for templates auto-adds weird default value Pin
Stefan_Lang14-May-14 0:21
Stefan_Lang14-May-14 0:21 
GeneralRe: C++ Code formatting for templates auto-adds weird default value Pin
Thomas Daniels14-May-14 4:00
mentorThomas Daniels14-May-14 4:00 
GeneralRe: C++ Code formatting for templates auto-adds weird default value Pin
Stefan_Lang14-May-14 4:52
Stefan_Lang14-May-14 4:52 
GeneralRe: C++ Code formatting for templates auto-adds weird default value Pin
Chris Maunder14-May-14 6:01
cofounderChris Maunder14-May-14 6:01 
GeneralRe: C++ Code formatting for templates auto-adds weird default value Pin
Brisingr Aerowing14-May-14 6:17
professionalBrisingr Aerowing14-May-14 6:17 
GeneralRe: C++ Code formatting for templates auto-adds weird default value Pin
Stefan_Lang14-May-14 20:14
Stefan_Lang14-May-14 20:14 
GeneralRe: C++ Code formatting for templates auto-adds weird default value Pin
Chris Maunder15-May-14 1:35
cofounderChris Maunder15-May-14 1:35 
GeneralRe: C++ Code formatting for templates auto-adds weird default value Pin
Stefan_Lang15-May-14 3:16
Stefan_Lang15-May-14 3:16 
trying to reproduce...

Test: copy paste from text editor, click elsewhere (auto-closes 'Paste-as' dialog), then select and enclose in <pre>
C++
#include <string>
template <class T>
class myT {
T var;
};

Test 2: copy from within unsent post, including pre tags
C++
#include <string>
template <class T>
class myT {
T var;
};

Test 3: copy from within unsent post, excluding pre tags, use paste as code
C#
#include <string>
template <class T>
class myT {
T var;
};


Edit: ok, all seems to work, except pasting as codeblock uses C# formatting by default. Also the C# formatting automatically replaced the < and > tokens with the corresponding HTML tags automatically.

Another test: typing (not copying) same code, then enclose in pre
C++
#include <string>
template <class T>
class myT {
var T;
};


At this point I'm running out of ideas - maybe it's only in some forums ? I've noticed it in Q&A, will go test there...


Edit 2:
Tried 'improving' a solution of mine in Q&A, but couldn't reproduce the issue. I'll bookmark this thread and come back when i find an example that can be reproduced.

Edit 3:
Another test, trying to reproduce the problem i just faced in Q&A:
C++
template <class T>
class myT {
   T var;
public:
   void hello();
};
void foo() {
   myT<int> x;
   x.hello();
}

The function myT<int>::hello().
GOTOs are a bit like wire coat hangers: they tend to breed in the darkness, such that where there once were few, eventually there are many, and the program's architecture collapses beneath them. (Fran Poretto)

Point in case: http://www.infoq.com/news/2014/02/apple_gotofail_lessons[^]


modified 16-May-14 7:13am.

GeneralRe: C++ Code formatting for templates auto-adds weird default value Pin
Brisingr Aerowing15-May-14 9:30
professionalBrisingr Aerowing15-May-14 9:30 
GeneralRe: C++ Code formatting for templates auto-adds weird default value Pin
Chris Maunder15-May-14 9:34
cofounderChris Maunder15-May-14 9:34 
GeneralRe: C++ Code formatting for templates auto-adds weird default value Pin
Stefan_Lang16-May-14 1:16
Stefan_Lang16-May-14 1:16 
GeneralRe: C++ Code formatting for templates auto-adds weird default value Pin
Stefan_Lang16-May-14 1:18
Stefan_Lang16-May-14 1:18 
GeneralRe: C++ Code formatting for templates auto-adds weird default value Pin
Stefan_Lang10-Jun-14 1:45
Stefan_Lang10-Jun-14 1:45 
GeneralRe: C++ Code formatting for templates auto-adds weird default value Pin
Stefan_Lang6-Aug-14 0:25
Stefan_Lang6-Aug-14 0:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Flags: AnsweredUnable to replicate

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.