diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-08 10:57:43 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-03-08 10:57:43 +0200 |
commit | a236e04a281da3ce9b96418ed81a1dff85008da5 (patch) | |
tree | b5f05972ff8660fcfa3e6317282f91710a380602 /common/lazy-ptr | |
parent | d131429888dd3f050c06feb2b24af9fb2734a54a (diff) |
Use more consistent naming convention
Diffstat (limited to 'common/lazy-ptr')
-rw-r--r-- | common/lazy-ptr/driver.cxx | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/common/lazy-ptr/driver.cxx b/common/lazy-ptr/driver.cxx index c40eb92..5f95c9a 100644 --- a/common/lazy-ptr/driver.cxx +++ b/common/lazy-ptr/driver.cxx @@ -119,11 +119,11 @@ main (int argc, char* argv[]) // Load. // - cont* lc (o->c.load ()); - obj* lo (c->o[0].load ()); + cont* cl (o->c.load ()); + obj* ol (c->o[0].load ()); - assert (lc == c.get ()); - assert (lo == o); + assert (cl == c.get ()); + assert (ol == o); // Test unload/reload. // @@ -191,11 +191,11 @@ main (int argc, char* argv[]) // Load. // - cont* lc (o->c.load ()); - const auto_ptr<obj>& lo (c->o.load ()); + cont* cl (o->c.load ()); + const auto_ptr<obj>& ol (c->o.load ()); - assert (lc == c.get ()); - assert (lo.get () == o); + assert (cl == c.get ()); + assert (ol.get () == o); t.commit (); } @@ -295,11 +295,11 @@ main (int argc, char* argv[]) // Load. // - shared_ptr<cont> lc (o->c.load ()); - shared_ptr<obj> lo (c->o[0].load ()); + shared_ptr<cont> cl (o->c.load ()); + shared_ptr<obj> ol (c->o[0].load ()); - assert (lc == c); - assert (lo == o); + assert (cl == c); + assert (ol == o); t.commit (); } @@ -321,11 +321,11 @@ main (int argc, char* argv[]) // Reload. // assert (!c->o[1].loaded ()); - shared_ptr<obj> lo (c->o[1].load ()); + shared_ptr<obj> ol (c->o[1].load ()); assert (c->o[1].loaded ()); - lo.reset (); + ol.reset (); assert (!c->o[1].loaded ()); - lo = c->o[1].load (); + ol = c->o[1].load (); assert (c->o[1].loaded ()); t.commit (); |