summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Negreanu <adrian.m.negreanu@intel.com>2014-01-09 11:44:36 (GMT)
committerAdrian Negreanu <adrian.m.negreanu@intel.com>2014-01-09 11:44:39 (GMT)
commit2349f4b3ff931e334b3d3e09b3e03861a7630f86 (patch)
treeefb0d8c505161093151f2cdf9f2d22297e90a18f
parentf57d018be2ea27e9822806192e647329d13cba12 (diff)
downloadDoxygen-2349f4b3ff931e334b3d3e09b3e03861a7630f86.zip
Doxygen-2349f4b3ff931e334b3d3e09b3e03861a7630f86.tar.gz
Doxygen-2349f4b3ff931e334b3d3e09b3e03861a7630f86.tar.bz2
sqlite3: leave out insertMemberReference until xref location is valid
the code comes from the early stage of sqlite3gen, when xref keys were kept as "file:line:column", not as function name. Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
-rw-r--r--src/sqlite3gen.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqlite3gen.cpp b/src/sqlite3gen.cpp
index c681214..ee3b0d6 100644
--- a/src/sqlite3gen.cpp
+++ b/src/sqlite3gen.cpp
@@ -310,7 +310,8 @@ static void insertMemberReference(sqlite3 *db, MemberDef *src, MemberDef *dst, c
{
sscanf(floc,"%[^:]:%d:%d",file,&line,&column);
}
- insertMemberReference(db,src->anchor().data(),dst->anchor().data(),file,line,column);
+#warning Disabled until the xref key can be stored as file:line:column
+ //insertMemberReference(db,src->anchor().data(),dst->anchor().data(),file,line,column);
}
}