hi ..
when you say IF_* , and IF_& , WHAT DOES IT ESSENTIALLY mean... does it mean if_pointer and if_address(refe rence)
User Profile
Collapse
-
Template Metaprogramming
Hi, I was going through the TMP . I got stuck with the following code . I coundn't understand the declaration ofin the following code ,can anyone help me in figuring out the FLOW OF THE PROGRAMCode:Class if_
...Code:template <bool Condition, typename TrueResult, typename FalseResult> class if_; template <typename TrueResult, typename FalseResult> struct if_<true, TrueResult, FalseResult>
-
Pragma
How can i use a pragma directive in order to show warning by compiler when a variable is declared twice.. That is
class a
{
int b;
void f()
{
int b;
}
};
although it is getting compiled without warning.
No activity results to display
Show More
Leave a comment: