mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 14:48:32 -04:00
Minor whitespace and comment cleanups
This commit is contained in:
parent
3a838c0861
commit
b9dbded412
1 changed files with 5 additions and 5 deletions
8
dbdimp.h
8
dbdimp.h
|
@ -90,7 +90,7 @@ newUTF8SVpv(char *s, STRLEN len) {
|
|||
sv = newSVpv(s, len);
|
||||
SvUTF8_on(sv);
|
||||
return sv;
|
||||
} /* End new UTF8SVpv */
|
||||
}
|
||||
|
||||
static SV *
|
||||
newUTF8SVpvn(char *s, STRLEN len) {
|
||||
|
@ -103,7 +103,7 @@ newUTF8SVpvn(char *s, STRLEN len) {
|
|||
return sv;
|
||||
}
|
||||
|
||||
#else /* SvUTF8_on not defined */
|
||||
#else /* #ifdef SvUTF8_on */
|
||||
|
||||
#define newUTF8SVpv newSVpv
|
||||
#define newUTF8SVpvn newSVpvn
|
||||
|
@ -111,6 +111,6 @@ newUTF8SVpvn(char *s, STRLEN len) {
|
|||
#define SvUTF8_off(a) (a)
|
||||
#define sv_utf8_upgrade(a) (a)
|
||||
|
||||
#endif
|
||||
#endif /* #ifdef SvUTF8_on */
|
||||
|
||||
#endif /* _DBDIMP_H */
|
||||
#endif /* #ifndef _DBDIMP_H */
|
||||
|
|
Loading…
Add table
Reference in a new issue