Advertisement
Kviiik

WTF

Sep 27th, 2021
1,197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.55 KB | None | 0 0
  1.     double density(void) const {
  2.         qDebug() << "Density" << QString("Density %1 at %2 of %3")
  3.                     .arg(this->m_density, 40, 'g', 30)
  4.                     .arg((unsigned long long int) &this->m_density, 16, 16)
  5.                     .arg((unsigned long long int) this, 16, 16);
  6.         return this->m_density;
  7.     }
  8.  
  9. From MeteoroidDetails
  10. Density                                     3370 at          5376b40 of          5376a68
  11. From SnapshotDetails
  12. Density     4.61907901084731489109204283278e-317 at           22ba18 of           22b940
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement