瀏覽代碼

util: Fix compiler errors in the release build of C++ sources.

tags/mesa_20090313
José Fonseca 17 年之前
父節點
當前提交
ef823dd543
共有 1 個檔案被更改,包括 11 行新增2 行删除
  1. 11
    2
      src/gallium/auxiliary/util/u_memory.h

+ 11
- 2
src/gallium/auxiliary/util/u_memory.h 查看文件

@@ -39,7 +39,12 @@
#include "pipe/p_debug.h"


/* Define ENOMEM for WINCE */
#ifdef __cplusplus
extern "C" {
#endif


/* Define ENOMEM for WINCE */
#if (_WIN32_WCE < 600)
#ifndef ENOMEM
#define ENOMEM 12
@@ -47,7 +52,6 @@
#endif



#if defined(PIPE_SUBSYSTEM_WINDOWS_DISPLAY) && defined(DEBUG)

/* memory debugging */
@@ -220,4 +224,9 @@ mem_dup(const void *src, uint size)



#ifdef __cplusplus
}
#endif


#endif /* U_MEMORY_H */

Loading…
取消
儲存