Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-12-10 13:40:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-12-10 13:40:30 +0300
commit3060217d39747589d66bc4501ceaf30f59923cdc (patch)
tree9fd407b85f721a5298e941dbe59f25329776adc4 /source/blender/nodes/intern/geometry_nodes_eval_log.cc
parent715f57371baa627ca677a8faf88e56ebb1180027 (diff)
Cleanup: move public doc-strings into headers for 'nodes'
Ref T92709
Diffstat (limited to 'source/blender/nodes/intern/geometry_nodes_eval_log.cc')
-rw-r--r--source/blender/nodes/intern/geometry_nodes_eval_log.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/nodes/intern/geometry_nodes_eval_log.cc b/source/blender/nodes/intern/geometry_nodes_eval_log.cc
index f504dbfd4b4..f522740b905 100644
--- a/source/blender/nodes/intern/geometry_nodes_eval_log.cc
+++ b/source/blender/nodes/intern/geometry_nodes_eval_log.cc
@@ -489,10 +489,6 @@ void LocalGeoLogger::log_execution_time(DNode node, std::chrono::microseconds ex
node_exec_times_.append({node, exec_time});
}
-/**
- * Log a message that will be displayed in the node editor next to the node. This should only be
- * used for debugging purposes and not to display information to users.
- */
void LocalGeoLogger::log_debug_message(DNode node, std::string message)
{
node_debug_messages_.append({node, std::move(message)});