summaryrefslogtreecommitdiff
path: root/src/scope.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-11-08 14:59:11 -0500
committerJohn Wiegley <johnw@newartisans.com>2009-11-08 14:59:11 -0500
commit394c7bd8dfbe12e09b7fdee8d5c4072f4336d545 (patch)
tree55a1d3376e1549c4e334c917851c341be6973e0c /src/scope.h
parent55c7792c9329f97dd19fc5aeca466cb2de4fbf9c (diff)
downloadfork-ledger-394c7bd8dfbe12e09b7fdee8d5c4072f4336d545.tar.gz
fork-ledger-394c7bd8dfbe12e09b7fdee8d5c4072f4336d545.tar.bz2
fork-ledger-394c7bd8dfbe12e09b7fdee8d5c4072f4336d545.zip
Removed a bunch of empty comments
Diffstat (limited to 'src/scope.h')
-rw-r--r--src/scope.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/scope.h b/src/scope.h
index c2c9df20..cd7d93c7 100644
--- a/src/scope.h
+++ b/src/scope.h
@@ -38,10 +38,6 @@
* @author John Wiegley
*
* @ingroup expr
- *
- * @brief Brief
- *
- * Long.
*/
#ifndef _SCOPE_H
#define _SCOPE_H
@@ -50,11 +46,6 @@
namespace ledger {
-/**
- * @brief Brief
- *
- * Long.
- */
struct symbol_t
{
enum kind_t {
@@ -105,11 +96,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
class scope_t
{
public:
@@ -138,11 +124,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
class child_scope_t : public noncopyable, public scope_t
{
public:
@@ -186,11 +167,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
class symbol_scope_t : public child_scope_t
{
typedef std::map<symbol_t, expr_t::ptr_op_t> symbol_map;
@@ -228,11 +204,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
class call_scope_t : public child_scope_t
{
value_t args;
@@ -301,11 +272,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
class bind_scope_t : public child_scope_t
{
bind_scope_t();
@@ -349,11 +315,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
template <typename T>
T * search_scope(scope_t * ptr)
{