There was an error while loading. Please reload this page.
1 parent 4557b09 commit 32c22c3Copy full SHA for 32c22c3
2 files changed
pythonbpf/codegen.py
@@ -3,7 +3,7 @@
3
from .license_pass import license_processing
4
from .functions_pass import func_proc
5
from .maps_pass import maps_proc
6
-from .structs_pass import structs_proc
+from .structs.structs_pass import structs_proc
7
from .globals_pass import globals_processing
8
import os
9
import subprocess
pythonbpf/structs/structs_pass.py
@@ -1,7 +1,7 @@
1
import ast
2
import logging
from llvmlite import ir
-from .type_deducer import ctypes_to_ir
+from pythonbpf.type_deducer import ctypes_to_ir
from .struct_type import StructType
logger = logging.getLogger(__name__)
0 commit comments