summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2016-03-17 17:39:43 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2016-03-17 17:39:43 +0800
commit8987bb5ab65134e575e3d8831585469a11ecea66 (patch)
tree3acb2859507f24527f192f55cfe24076b2158d98
parentc0313f2950abb15fd5f4d2708102f9cd786b1803 (diff)
downloadgobject-introspection-8987bb5ab65134e575e3d8831585469a11ecea66.tar.gz
Fix code style
Make my last patch to this file conform to the code style in the rest of this file.
-rw-r--r--girepository/cmph/bdz.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/girepository/cmph/bdz.c b/girepository/cmph/bdz.c
index a1c907f1..34898ad5 100644
--- a/girepository/cmph/bdz.c
+++ b/girepository/cmph/bdz.c
@@ -455,12 +455,14 @@ static void assigning(bdz_config_data_t *bdz, bdz_graph3_t* graph3, bdz_queue_t
SETBIT(marked_vertices, v2);
}
DEBUGP("A:%u %u %u -- %u %u %u\n", v0, v1, v2, GETVALUE(bdz->g, v0), GETVALUE(bdz->g, v1), GETVALUE(bdz->g, v2));
+
#if (_MSC_VER > 1699 && _MSC_VER < 1800)
- /* This is bad, MSVC 2012 X64 getting confused with the value of i... */
- /* an obvious MSVC 2012 X64 compiler bug :| */
- if (i <= 0)
- break;
+ /* This is bad, MSVC 2012 X64 getting confused with the value of i... */
+ /* an obvious MSVC 2012 X64 compiler bug :| */
+ if (i <= 0)
+ break;
#endif
+
};
free(marked_vertices);
}