summaryrefslogtreecommitdiff
path: root/src/globals.cpp
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-12-07 09:36:30 -0800
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2013-12-07 09:36:30 -0800
commit2a0d1ae46b16f58ef7a4a096141b4a725600bf3e (patch)
tree252766d0e872749837e03b4d80b20c596c93bca0 /src/globals.cpp
parentc91dc2292f4fd49a3103691cb70fee8336c6aa6c (diff)
Changed tabs in whitespace with newlines, added initial implementation for Value::size() for object variables
Diffstat (limited to 'src/globals.cpp')
-rw-r--r--src/globals.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/globals.cpp b/src/globals.cpp
index e8672aa..23803a5 100644
--- a/src/globals.cpp
+++ b/src/globals.cpp
@@ -14,18 +14,18 @@
namespace Php {
/**
- * Get access to the globals single instance
- * @return Globals
+ * Get access to the globals single instance
+ * @return Globals
*/
Globals &Globals::instance()
{
- static Globals globals;
- return globals;
+ static Globals globals;
+ return globals;
}
/**
* The one and only instance
- * @var Globals
+ * @var Globals
*/
Globals &globals = Globals::instance();