Thread: Get error when i compile

Results 1 to 3 of 3
  1. #1 Get error when i compile 
    Registered Member
    Join Date
    Aug 2008
    Posts
    16
    Thanks given
    0
    Thanks received
    0
    Rep Power
    1
    this happens and not sure how to fix this




    Reply With Quote  
     

  2. #2  
    Registered Member
    Its paris's Avatar
    Join Date
    Apr 2009
    Posts
    1,141
    Thanks given
    56
    Thanks received
    234
    Rep Power
    689
    chances are your previous if statement isn't closed yet:
    Code:
    if(methodReturningBoolean(){
        //BlaBla
    } else if (someInteger == someOtherInteger){
        //BlaBla
    }
    Here there's a round bracket missing at the end of the if statement:
    Code:
    if(methodReturningBoolean()){
        //BlaBla
    } else if (someInteger == someOtherInteger){
        //BlaBla
    }
    Reply With Quote  
     

  3. #3  
    Registered Member Hexagon's Avatar
    Join Date
    May 2008
    Posts
    672
    Thanks given
    28
    Thanks received
    18
    Rep Power
    33
    *offtopic*btw you posted 2 times
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •