Search found 1248 matches

by LuisR14
January 5th, 2018, 2:17 am
Forum: Everything
Topic: Variable at construction not always updating
Replies: 18
Views: 8978

Re: Variable at construction not always updating

That problem just has to do with the compiler seeing changes from the standpoint of the source files. If any source file that includes the header file is able to see the changes in it, then it would be recompiled properly.
by LuisR14
December 25th, 2017, 9:31 am
Forum: Everything
Topic: Noob learns to code in 3 months
Replies: 670
Views: 205735

Re: Noob learns to code in 3 months

hahaha xD
by LuisR14
November 1st, 2017, 8:15 pm
Forum: Everything
Topic: Noob question about scope.
Replies: 10
Views: 4340

Re: Noob question about scope.

the different, available scopes I consider are static, global, file, namespace, class, function, and block.
global and file are basically the same (and is equal to the global namespace)
by LuisR14
October 17th, 2017, 1:17 pm
Forum: Everything
Topic: For those who watched the bitmap loading video
Replies: 6
Views: 2754

Re: For those who watched the bitmap loading video

from what I gather, only clrcall passes ltr (which we here at Chili Institute never really use :D)
chili wrote:Long time no see.
heh, I've been here, just lurking mostly :P
by LuisR14
October 17th, 2017, 7:01 am
Forum: Everything
Topic: Tutorial Series Alearts
Replies: 3
Views: 1795

Re: Tutorial Series Alearts

of course you can fix the topic title :P
by LuisR14
October 17th, 2017, 3:02 am
Forum: Everything
Topic: For those who watched the bitmap loading video
Replies: 6
Views: 2754

Re: For those who watched the bitmap loading video

parameters are just handled differently depending on the function's calling convention :P
by LuisR14
August 10th, 2017, 8:48 pm
Forum: Everything
Topic: VS Text Editing Help
Replies: 6
Views: 2692

Re: VS Text Editing Help

just go where albinopapa says, but Text Editor -> C/C++ -> View, change Highlight Matching Tokens under Miscellaneous
by LuisR14
July 24th, 2017, 6:01 am
Forum: Everything
Topic: Git problem.
Replies: 14
Views: 4799

Re: Git problem.

  • Go to branches
  • Right click your branch
  • Click Publish Branch
by LuisR14
May 25th, 2017, 4:14 am
Forum: Everything
Topic: Constructor
Replies: 24
Views: 83181

Re: Constructor

I totally know about that type cast (i, in fact, knew about different type casts)
by LuisR14
May 24th, 2017, 9:05 am
Forum: Everything
Topic: Constructor
Replies: 24
Views: 83181

Re: Constructor

albinopapa wrote: I sometimes do this though.

Code: Select all

constexpr Vector3 ( const float x, const float y, const float z ) 
     : x_ { x }, y_ { y }, z_ { z }
{
}
this is my preferred style

(and i somehow thought that one could initialize arrays in the initializer list, as cyboryx just showed us)