From ff626ac76357940b2f0ac5cb243a68ac13df0f8a Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 19 Oct 2013 18:48:38 +0200 Subject: *: use references instead of pointers --- src/QueueSave.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/QueueSave.hxx') diff --git a/src/QueueSave.hxx b/src/QueueSave.hxx index 25d7804fb..13322cc95 100644 --- a/src/QueueSave.hxx +++ b/src/QueueSave.hxx @@ -31,12 +31,12 @@ struct queue; class TextFile; void -queue_save(FILE *fp, const struct queue *queue); +queue_save(FILE *fp, const queue &queue); /** * Loads one song from the state file and appends it to the queue. */ void -queue_load_song(TextFile &file, const char *line, queue *queue); +queue_load_song(TextFile &file, const char *line, queue &queue); #endif -- cgit v1.2.3