• R/O
  • SSH
  • HTTPS

globalbase: Commit


Commit MetaInfo

Revisão5961 (tree)
Hora2019-01-27 00:06:21
Autorjoshua

Mensagem de Log

sPtr

Mudança Sumário

Diff

--- modules/tinyState/trunk/src/h/ts/c++/sPtr.h (revision 5960)
+++ modules/tinyState/trunk/src/h/ts/c++/sPtr.h (revision 5961)
@@ -34,18 +34,20 @@
3434 operator bool() const {
3535 return (ptr);
3636 }
37- int operator==(sPtr inp) const {
37+ bool operator==(sPtr inp) const {
3838 return (ptr == inp.ptr);
3939 }
40- int operator!=(sPtr inp) const {
40+ bool operator!=(sPtr inp) const {
4141 return (ptr != inp.ptr);
4242 }
43- int operator==(stdObject * inp) const {
43+/*
44+ bool operator==(stdObject * inp) const {
4445 return (ptr == inp);
4546 }
46- int operator!=(stdObject * inp) const {
47+ bool operator!=(stdObject * inp) const {
4748 return (ptr != inp);
4849 }
50+*/
4951 operator __TYPE *() const {
5052 return ptr;
5153 }
Show on old repository browser