Click here to Skip to main content
15,897,518 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: 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 
GeneralRe: C++ Code formatting for templates auto-adds weird default value Pin
Brisingr Aerowing15-May-14 9:30
professionalBrisingr Aerowing15-May-14 9:30 
It seems to happen randomly. I never know when it will hit.

C#
/// <summary>
		/// Adds all <paramref name="elements"/> to <paramref name="list"/>.
		/// </summary>
		public static void AddRange<T>(this ICollection<T> list, IEnumerable<T> elements)
		{
			foreach (T o in elements)
				list.Add(o);
		}


C++
template <class    identifier> function_declaration;
template <typename identifier> function_declaration;


C++
//This example throws the following error : call of overloaded 'max(double, double)' is ambiguous
template <typename Type>
Type max(Type a, Type b) {
    return a > b ? a : b;
}

What do you get when you cross a joke with a rhetorical question?

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 
BugCTRL+Left and CTRL+Right don't work everywhere Pin
OriginalGriff14-May-14 0:13
mveOriginalGriff14-May-14 0:13 
GeneralRe: CTRL+Left and CTRL+Right don't work everywhere Pin
Rage14-May-14 1:11
professionalRage14-May-14 1:11 
GeneralRe: CTRL+Left and CTRL+Right don't work everywhere Pin
OriginalGriff14-May-14 3:17
mveOriginalGriff14-May-14 3:17 
GeneralRe: CTRL+Left and CTRL+Right don't work everywhere Pin
Chris Maunder15-May-14 2:00
cofounderChris Maunder15-May-14 2:00 
GeneralRe: CTRL+Left and CTRL+Right don't work everywhere Pin
OriginalGriff15-May-14 2:18
mveOriginalGriff15-May-14 2:18 
BugCannot Report a Message Pin
Karen Mitchelle13-May-14 21:55
professionalKaren Mitchelle13-May-14 21:55 
GeneralRe: Cannot Report a Message Pin
Chris Maunder14-May-14 16:24
cofounderChris Maunder14-May-14 16:24 
GeneralRe: Cannot Report a Message Pin
Karen Mitchelle14-May-14 20:25
professionalKaren Mitchelle14-May-14 20:25 
SuggestionArticle Contest Pin
Clark Kent12313-May-14 7:34
professionalClark Kent12313-May-14 7:34 
AnswerRe: Article Contest Pin
Kevin Priddle13-May-14 8:17
professionalKevin Priddle13-May-14 8:17 
GeneralRe: Article Contest Pin
Clark Kent12313-May-14 8:47
professionalClark Kent12313-May-14 8:47 
GeneralRe: Article Contest Pin
SoMad13-May-14 22:26
professionalSoMad13-May-14 22:26 

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

Flags: Added to TODOFixedAnswered

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