From a0ef23605a6fc5701e418047db899537c755fa91 Mon Sep 17 00:00:00 2001 From: Cary R Date: Tue, 4 Aug 2020 22:10:43 -0700 Subject: [PATCH] Update some functions to use inline --- vvp/vthread.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/vvp/vthread.cc b/vvp/vthread.cc index 043d996fc..559c536d3 100644 --- a/vvp/vthread.cc +++ b/vvp/vthread.cc @@ -444,32 +444,32 @@ inline static void pop_value(vvp_vector4_t&value, vthread_t thr, unsigned wid) /* * The following are used to allow the queue templates to print correctly. */ -static void print_queue_type(double) +inline static void print_queue_type(double) { cerr << "queue"; } -static void print_queue_type(string) +inline static void print_queue_type(string) { cerr << "queue"; } -static void print_queue_type(vvp_vector4_t value) +inline static void print_queue_type(vvp_vector4_t value) { cerr << "queue"; } -static void print_queue_value(double value) +inline static void print_queue_value(double value) { cerr << value; } -static void print_queue_value(string value) +inline static void print_queue_value(string value) { cerr << "\"" << value << "\""; } -static void print_queue_value(vvp_vector4_t value) +inline static void print_queue_value(vvp_vector4_t value) { cerr << value; }