Module Name:    src
Committed By:   christos
Date:           Mon Jul 29 07:59:47 UTC 2019

Modified Files:
        src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/dragonfly:
            codecvt_members.cc

Log Message:
remove extra paren


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
    
src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/dragonfly/codecvt_members.cc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/dragonfly/codecvt_members.cc
diff -u src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/dragonfly/codecvt_members.cc:1.2 src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/dragonfly/codecvt_members.cc:1.3
--- src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/dragonfly/codecvt_members.cc:1.2	Sun Jul 28 13:41:21 2019
+++ src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/dragonfly/codecvt_members.cc	Mon Jul 29 03:59:47 2019
@@ -149,7 +149,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 	    for (;; ++__to_next, __from += __conv)
 	      {
 		__conv = mbrtowc_l(__to_next, __from, __from_end - __from,
-				 &__tmp_state), (locale_t)_M_c_locale_codecvt);
+				 &__tmp_state, (locale_t)_M_c_locale_codecvt);
 		if (__conv == static_cast<size_t>(-1)
 		    || __conv == static_cast<size_t>(-2))
 		  break;

Reply via email to