From d6ea2ef02689d124798ed97fbc062dbc669e8b1a Mon Sep 17 00:00:00 2001
From: AlexeyAB <alexeyab84@gmail.com>
Date: Mon, 24 Jul 2017 15:50:54 +0000
Subject: [PATCH] Fix Debug to compile DLL in yolo_cpp_dll.vcxproj and yolo_cpp_dll_no_gpu.vcxproj

---
 src/list.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/list.c b/src/list.c
index 948d960..0e4165d 100644
--- a/src/list.c
+++ b/src/list.c
@@ -11,6 +11,7 @@
 	return l;
 }
 
+/*
 void transfer_node(list *s, list *d, node *n)
 {
     node *prev, *next;
@@ -22,6 +23,7 @@
     if(s->front == n) s->front = next;
     if(s->back == n) s->back = prev;
 }
+*/
 
 void *list_pop(list *l){
     if(!l->back) return 0;

--
Gitblit v1.10.0