Mesa (master): st/mesa: fix struct vs. class compilation warning

Brian Paul brianp at kemper.freedesktop.org
Thu Jan 12 16:21:15 UTC 2012


Module: Mesa
Branch: master
Commit: 9f2963b631cb2a2899fcb0eb384895fd33f9821d
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9f2963b631cb2a2899fcb0eb384895fd33f9821d

Author: Brian Paul <brianp at vmware.com>
Date:   Thu Jan 12 08:28:20 2012 -0700

st/mesa: fix struct vs. class compilation warning

glsl_to_tgsi_visitor is earlier defined as a class, not a struct.
Fixes MSVC warning.

NOTE: This is a candidate for the 8.0 branch.

---

 src/mesa/state_tracker/st_glsl_to_tgsi.cpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
index f5bee01..26047cf 100644
--- a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
+++ b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
@@ -5093,7 +5093,7 @@ st_link_shader(struct gl_context *ctx, struct gl_shader_program *prog)
 }
 
 void
-st_translate_stream_output_info(struct glsl_to_tgsi_visitor *glsl_to_tgsi,
+st_translate_stream_output_info(glsl_to_tgsi_visitor *glsl_to_tgsi,
                                 const GLuint outputMapping[],
                                 struct pipe_stream_output_info *so)
 {




More information about the mesa-commit mailing list