Update for Vulkan-Docs 1.1.108

This commit is contained in:
Jon Leech
2019-05-13 02:15:54 -07:00
committed by Jon Leech
parent 5f1ceaad4c
commit ace557cd9b
5 changed files with 376 additions and 1353 deletions

View File

@@ -17,8 +17,9 @@
# Base class for working-group-specific style conventions,
# used in generation.
from abc import ABC, abstractmethod
from abc import ABCMeta, abstractmethod
ABC = ABCMeta('ABC', (object,), {})
class ConventionsBase(ABC):
"""WG-specific conventions."""