diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-02-29 11:27:36 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-02-29 11:27:36 +0200 |
commit | cfdbf0f9c52288efaa57eba3a9c913790f034cf2 (patch) | |
tree | 7d4254231fba915044c3e600ee050b0c12d13b1e | |
parent | a4290c2d3bf405675054420d3c653abfcb27a3ab (diff) |
Rename level[1-2]() to l[1-2]()
-rw-r--r-- | brep/module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/brep/module b/brep/module index f0479ef..4ea5164 100644 --- a/brep/module +++ b/brep/module @@ -83,8 +83,8 @@ namespace brep // uint16_t verb_ = 0; - template <class F> void level1 (const F& f) const {if (verb_ >= 1) f ();} - template <class F> void level2 (const F& f) const {if (verb_ >= 2) f ();} + template <class F> void l1 (const F& f) const {if (verb_ >= 1) f ();} + template <class F> void l2 (const F& f) const {if (verb_ >= 2) f ();} // Set to true when the module is successfully initialized. // |