Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Unified Diff: src/sksl/ast/SkSLASTInterfaceBlock.h

Issue 2312233002: refactored SkSL VarDeclaration handling (Closed)
Patch Set: fixed nits Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/sksl/SkSLSPIRVCodeGenerator.cpp ('k') | src/sksl/ast/SkSLASTVarDeclaration.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/sksl/ast/SkSLASTInterfaceBlock.h
diff --git a/src/sksl/ast/SkSLASTInterfaceBlock.h b/src/sksl/ast/SkSLASTInterfaceBlock.h
index f501b125ced82db9eca0256362bdb5582a0f01b4..c271362071776a29a84fdc9f7b042f4b416e3981 100644
--- a/src/sksl/ast/SkSLASTInterfaceBlock.h
+++ b/src/sksl/ast/SkSLASTInterfaceBlock.h
@@ -26,7 +26,7 @@ struct ASTInterfaceBlock : public ASTDeclaration {
ASTModifiers modifiers,
std::string interfaceName,
std::string valueName,
- std::vector<std::unique_ptr<ASTVarDeclaration>> declarations)
+ std::vector<std::unique_ptr<ASTVarDeclarations>> declarations)
: INHERITED(position, kInterfaceBlock_Kind)
, fModifiers(modifiers)
, fInterfaceName(std::move(interfaceName))
@@ -48,7 +48,7 @@ struct ASTInterfaceBlock : public ASTDeclaration {
const ASTModifiers fModifiers;
const std::string fInterfaceName;
const std::string fValueName;
- const std::vector<std::unique_ptr<ASTVarDeclaration>> fDeclarations;
+ const std::vector<std::unique_ptr<ASTVarDeclarations>> fDeclarations;
typedef ASTDeclaration INHERITED;
};
« no previous file with comments | « src/sksl/SkSLSPIRVCodeGenerator.cpp ('k') | src/sksl/ast/SkSLASTVarDeclaration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698