Menu

division by zero

2017-07-21
2017-07-21
  • Volker Dirr

    Volker Dirr - 2017-07-21

    Hi,
    maybe it is worth to create a ticket for this (sadly i can do it myself anymore):

    int main ()
    {
    int b=0;
    int c=5;
    c/=b; //this warning is fine

    volatile int d=0;
    int e=5;
    e/=d;           //maybe false warning
    
    volatile int f=1;
    int g=5;
    g/=f;           //missing warning!
    
    int h;
    int i=5;
    i/=h;           //maybe missing warning!
    

    }

     
  • Daniel Marjamäki

    I may be able to restore your trac account. what was your username?

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.