Cleanup: comments (mainly long lines)

Comments after code can cause awkward line breaks.
This commit is contained in:
2019-04-21 13:44:06 +10:00
parent 9d72efe108
commit 93c19a5a2c
14 changed files with 134 additions and 85 deletions

View File

@@ -54,20 +54,21 @@
#include "bpy_rna.h"
typedef struct IDUserMapData {
/* place-holder key only used for lookups to avoid creating new data only for lookups
/** Place-holder key only used for lookups to avoid creating new data only for lookups
* (never return its contents) */
PyObject *py_id_key_lookup_only;
/* we loop over data-blocks that this ID points to (do build a reverse lookup table) */
/** We loop over data-blocks that this ID points to (do build a reverse lookup table) */
PyObject *py_id_curr;
ID *id_curr;
/* filter the values we add into the set */
/** Filter the values we add into the set. */
BLI_bitmap *types_bitmap;
PyObject *user_map; /* set to fill in as we iterate */
bool
is_subset; /* true when we're only mapping a subset of all the ID's (subset arg is passed) */
/** Set to fill in as we iterate. */
PyObject *user_map;
/** true when we're only mapping a subset of all the ID's (subset arg is passed). */
bool is_subset;
} IDUserMapData;
static int id_code_as_index(const short idcode)