what the ... ?
#6

you did perhaps have something like this:

PHP код:
if (...)
{
  
myfunc();
  
leetcode();
  
/*stopserver();
  killserver();
  killworld();*/

and when you commented that out, it became that:
PHP код:
/*if (...)
{
  myfunc();
  leetcode();
  /*stopserver();
  killserver();
  killworld();*/
}*/ 
if you take a look again at that now:
Код:
/*if (...) <= comment start here
{
  myfunc();
  leetcode();
  /*stopserver(); <= ignored start
  killserver();
  killworld();*/  <= comment end
}*/ compiler is confused.
Reply


Messages In This Thread
what the ... ? - by giuseppe_mazzei - 11.12.2009, 07:34
Re: what the ... ? - by [HiC]TheKiller - 11.12.2009, 08:33
Re: what the ... ? - by yom - 11.12.2009, 08:48
Re: what the ... ? - by giuseppe_mazzei - 11.12.2009, 11:46
Re: what the ... ? - by giuseppe_mazzei - 11.12.2009, 12:35
Re: what the ... ? - by Streetplaya - 11.12.2009, 12:39

Forum Jump:


Users browsing this thread: 2 Guest(s)